Skip to content

Commit

Permalink
Add entries to gitignore, create npmignore, create prepublish step.
Browse files Browse the repository at this point in the history
  • Loading branch information
divmain committed Aug 31, 2015
1 parent 7ce44ea commit 1c314ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .eslintignore
@@ -0,0 +1,2 @@
example/
lib/
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -39,3 +39,4 @@ out/
npm-debug.log
node_modules/
dist/
lib/
5 changes: 5 additions & 0 deletions .npmignore
@@ -0,0 +1,5 @@
docs/
example/
scripts/
spec/
src/
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -4,9 +4,10 @@
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ext .jst --ignore-pattern example .",
"lint": "eslint --ext .js --ext .jst .",
"test": "mocha spec/run.js",
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"check": "npm run lint && npm run test && ./scripts/validate-docs.sh",
"generate-docs": "babel-node ./scripts/generate-docs.js"
},
Expand Down

0 comments on commit 1c314ef

Please sign in to comment.