Skip to content

Commit 6889e1d

Browse files
committed
Fix build-scripts
1 parent c05cfe8 commit 6889e1d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"private": true,
33
"scripts": {
4-
"test": "env NODE_PATH=$NODE_PATH:$PWD/src mocha tests/* --require babel-core/register --require babel-polyfill --require ./tests/helper --recursive",
4+
"test": "mocha tests/* --require babel-core/register --require babel-polyfill --require ./tests/helper --recursive",
55
"start": "node server.js",
66
"build": "npm run test && $(npm bin)/babel-node tools/run build -- --release",
7-
"lint": "$(npm bin)/eslint . --ext .js,.jsx",
8-
"clean": "$(npm bin)/babel-node tools/run clean",
9-
"deploy": "npm run lint && npm run test && $(npm bin)/babel-node tools/run deploy -- --release"
7+
"lint": "eslint . --ext .js,.jsx",
8+
"clean": "babel-node tools/run clean",
9+
"deploy": "npm run lint && npm run test && babel-node tools/run deploy -- --release"
1010
},
1111
"babel": {
1212
"presets": [
@@ -31,6 +31,7 @@
3131
"source-map-support": "^0.4.0"
3232
},
3333
"devDependencies": {
34+
"app-module-path": "^1.0.5",
3435
"babel-cli": "^6.5.1",
3536
"babel-eslint": "^5.0.0",
3637
"babel-loader": "^6.2.4",

0 commit comments

Comments
 (0)