Skip to content

Commit f2acb1e

Browse files
committed
npm should ignore the entire docs folder
1 parent 239ff99 commit f2acb1e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.npmignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,4 @@ typings/
8080
test/
8181

8282
# npm ignore
83-
docs/doc-support
84-
docs/documentation
85-
docs/index.html
86-
docs/issue.html
83+
docs/

scripts/npm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ const fs = require('fs');
33
var ignore = fs.readFileSync('./.gitignore');
44
ignore += "\n";
55
ignore += "# npm ignore\n";
6-
ignore += "docs/documentation/\n";
6+
ignore += "docs/";
77
fs.writeFileSync('./.npmignore', ignore);

0 commit comments

Comments
 (0)