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 0674a0b commit a2b032cCopy full SHA for a2b032c
.gitignore
@@ -33,3 +33,7 @@ node_modules
33
34
# Babel-compiled files
35
lib
36
+
37
+# Ignore package manager lock files
38
+package-lock.json
39
+yarn.lock
package.json
@@ -14,7 +14,7 @@
14
},
15
"scripts": {
16
"build": "cross-env BABEL_ENV=rollup rollup -c",
17
- "prepublish": "npm run build",
+ "prepare": "npm run build",
18
"test": "cross-env BABEL_ENV=test mocha --compilers js:babel-register test/test.js",
19
"report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js",
20
"coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json"
0 commit comments