Skip to content

Commit

Permalink
Move build command to normal npm script
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Mar 21, 2016
1 parent 15fd0ca commit 035cc37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"scripts": {
"lint": "eslint --ext .js,.jsx --ignore-pattern dist .",
"test": "npm run lint",
"watch": "babel -w lib --out-dir dist/"
"watch": "babel -w lib --out-dir dist/",
"build": "babel lib --out-dir dist/"
}
}
1 change: 0 additions & 1 deletion scripts/build.sh

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/prepublish.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
npm test
./scripts/build.sh
npm run build

0 comments on commit 035cc37

Please sign in to comment.