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.
2 parents e26fc8d + edd2d3c commit a9602f3Copy full SHA for a9602f3
.npmignore
@@ -1,2 +1,10 @@
1
-src/
2
-gulpfile.js
+# ignore everything
+*
3
+
4
+# include these:
5
+!/lib/**/*
6
+!LICENSE.md
7
+!README.md
8
9
+# exclude hidden files from the includes:
10
+.*
package.json
@@ -5,7 +5,8 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
- "build": "tsc && chmod +x lib/cli.js",
+ "clean": "rm -rf lib/",
+ "build": "yarn clean && tsc && chmod +x lib/cli.js",
"test": "jest",
11
"test:watch": "jest --watch",
12
"test:ci": "jest --coverage",
0 commit comments