We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b098645 commit 4b6507dCopy full SHA for 4b6507d
.gitignore
@@ -1 +1,3 @@
1
node_modules
2
+dist.js
3
+npm-debug.log
package.json
@@ -2,9 +2,11 @@
"name": "micro-analytics-adapter-flat-file-db",
"version": "1.0.0",
4
"description": "Store your micro-analytics data in flat-file-db!",
5
- "main": "index.js",
+ "main": "dist.js",
6
"scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "build": "async-to-gen index.js --out-file dist.js",
9
+ "prepublish": "npm run build"
10
},
11
"repository": {
12
"type": "git",
@@ -27,5 +29,8 @@
27
29
28
30
"peerDependencies": {
31
"micro-analytics": "^1.2.0"
32
+ },
33
+ "devDependencies": {
34
+ "async-to-gen": "^1.3.0"
35
}
36
0 commit comments