Skip to content

Commit

Permalink
Use pre* in npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitchell Hentges committed May 14, 2016
1 parent f288eec commit 23a801c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
"test": "mocha --reporter dot --recursive -r setup-referee-sinon/globals test/unit --compilers js:babel-core/register",
"test-ci": "npm run lint && npm run test",
"package": "npm run dist",
"dist": "gulp clean dist-prep && build --arch all",
"dist:win64": "gulp clean dist-prep && build --platform win32 --arch x64"
"predist": "gulp clean dist-prep",
"predist:win64": "gulp clean dist-prep",
"dist": "build --arch all",
"dist:win64": "build --platform win32 --arch x64"
},
"dependencies": {
"electron-squirrel-startup": "^0.1.4",
Expand Down

0 comments on commit 23a801c

Please sign in to comment.