Skip to content

Commit 5209881

Browse files
committedJan 3, 2018
Add dist to .gitignore
1 parent 32bac52 commit 5209881

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎.eslintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
src/parser/generated/regexp-tree.js
1+
src/parser/generated/regexp-tree.js
2+
dist/

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/dist
12
node_modules/
23
.npm-debug.log
34
npm-debug.log

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"build": "node scripts/build.js",
1111
"test": "jest",
12-
"prepublish": "npm test && npm run build",
12+
"prepublish": "npm run build && npm test",
1313
"eslint": "eslint src/ && eslint bin/regexp-tree"
1414
},
1515
"bin": {

0 commit comments

Comments
 (0)
Please sign in to comment.