Skip to content

Commit

Permalink
Rename package => build.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshaber committed May 25, 2016
1 parent 8f9144f commit 81e79dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ before_script:

script:
- npm run lint
- npm run pkg:release
- npm run build:release
- npm test

cache:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ install:

build_script:
- npm run lint
- npm run pkg:release
- npm run build:release

test_script:
- npm test
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"test": "electron-mocha --renderer --require ts-node/register test/*.ts test/*.tsx",
"postinstall": "typings install",
"start-server": "node dev_server.js",
"start": "npm run pkg:debug && npm-run-all --parallel run start-server",
"start": "npm run build:debug && npm-run-all --parallel run start-server",
"run": "env NODE_ENV=development node script/run",
"compile:debug": "tsc && env NODE_ENV=development webpack --config webpack.development.js",
"compile:release": "tsc && env NODE_ENV=production webpack --config webpack.production.js",
"pkg:debug": "npm run compile:debug && env NODE_ENV=development node script/package",
"pkg:release": "npm run compile:release && env NODE_ENV=production node script/package",
"build:debug": "npm run compile:debug && env NODE_ENV=development node script/build",
"build:release": "npm run compile:release && env NODE_ENV=production node script/build",
"clean": "rm -rf build",
"rebuild": "npm run clean && npm run pkg:debug",
"rebuild": "npm run clean && npm run build:debug",
"lint": "tslint ./src/**/*.ts ./src/**/*.tsx ./test/**/*.ts ./test/**/*.tsx"
},
"author": "",
Expand Down
File renamed without changes.

0 comments on commit 81e79dd

Please sign in to comment.