Skip to content

Commit 6f173ad

Browse files
committed
Fix for #10
Changing the ignore path to only ignore the generated docs/documentation/ directory. Increment version super minor for NPM
1 parent 974f69e commit 6f173ad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.npmignore

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

8282
# npm ignore
83-
docs/
83+
docs/documentation/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"keywords": [
77
"json-schema"
88
],
9-
"version": "0.1.8",
9+
"version": "0.1.81",
1010
"license": "See LICENSE file",
1111
"repository": {
1212
"type": "git",

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/\n";
6+
ignore += "docs/documentation/\n";
77
fs.writeFileSync('./.npmignore', ignore);

0 commit comments

Comments
 (0)