File tree Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ npm-debug.log
5
5
npm-shrinkwrap.json
6
6
package-lock.json
7
7
yarn.lock
8
+
9
+ .npmignore
Original file line number Diff line number Diff line change 1
- tests /
1
+ # Rules from: /Users/ljharb/Dropbox/git/browserify/sha.js.git/.gitignore
2
+ node_modules
3
+ npm-debug.log
4
+
5
+ # Only apps should have lockfiles
6
+ npm-shrinkwrap.json
7
+ package-lock.json
8
+ yarn.lock
9
+
10
+ .npmignore
11
+
12
+
13
+ # npmignore - autogenerated
14
+ .github /workflows
15
+ .github
Original file line number Diff line number Diff line change 18
18
"encoding" : " ^0.1.13" ,
19
19
"eslint" : " =8.8.0" ,
20
20
"hash-test-vectors" : " ^1.3.2" ,
21
+ "npmignore" : " ^0.3.1" ,
21
22
"tape" : " ^5.9.0" ,
22
23
"typedarray" : " ^0.0.7"
23
24
},
24
25
"bin" : " ./bin.js" ,
25
26
"scripts" : {
27
+ "prepack" : " npmignore --auto --commentLines=autogenerated" ,
26
28
"lint" : " eslint --ext=js,mjs ." ,
27
29
"pretest" : " npm run lint" ,
28
30
"test" : " npm run tests-only" ,
43
45
"commitLimit" : false ,
44
46
"backfillLimit" : false ,
45
47
"hideCredit" : true
48
+ },
49
+ "publishConfig" : {
50
+ "ignore" : [
51
+ " .github/workflows" ,
52
+ " .github"
53
+ ]
46
54
}
47
55
}
You can’t perform that action at this time.
0 commit comments