Skip to content

Commit

Permalink
changes to allow npm tasks to run on windows--omitting coveralls task…
Browse files Browse the repository at this point in the history
… for now; renamed scripts
  • Loading branch information
jwinn committed Mar 17, 2016
1 parent c9758d4 commit 0d68782
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion internals/scripts/init → internals/scripts/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cleanRepo(dir, function () {
if (error) {
process.stdout.write(error);
}
deleteFileInCurrentDir('init', function() {
deleteFileInCurrentDir('setup.js', function() {
process.stdout.write('\n');
interval = animateProgress('Initialising new repository');
process.stdout.write('Initialising new repository');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@
"start": "cross-env NODE_ENV=development node internals/webpack/server.dev.js",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --colors -p",
"serve": "cross-env NODE_ENV=production node internals/webpack/server.prod.js",
"pagespeed": "./internals/scripts/pagespeed",
"setup": "./internals/scripts/init",
"pagespeed": "node ./internals/scripts/pagespeed.js",
"setup": "node ./internals/scripts/setup.js",
"clean": "shjs ./internals/scripts/clean.js",
"generate": "plop --plopfile internals/generators/index.js",
"prebuild": "npm run test",
Expand Down

0 comments on commit 0d68782

Please sign in to comment.