Skip to content

Commit

Permalink
Deps fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
badsyntax committed Mar 2, 2015
1 parent a447868 commit b4a2878
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -17,14 +17,14 @@
"prerelease": "npm test",
"prestart": "npm install",
"prestart-dev": "npm run prestart",
"prebuild": "npm run prep-dist-dir",
"preprep-dist-dir": "npm run clean",
"bla": "NODE_ENV=production echo $npm_config_production",
"prebuild": "npm run dist-dir",
"predist-dir": "npm run clean",
"posthtml-copy": "npm run html-template",
"start": "NODE_ENV=production npm run build && npm run compress && npm run start-server",
"start-dev": "NODE_ENV=development npm run build-dev && `npm run start-server & npm run watch`",
"clean": "rm -rf $npm_package_config_dist_dir",
"prep-dist-dir": "mkdir -p $npm_package_config_dist_dir\"/js\" && mkdir -p $npm_package_config_dist_dir\"/css\"",
"html-copy": "cd app && find . -name \"*.html\" -type f -exec rsync -R {} \"../\"$npm_package_config_dist_dir\"/\" \\; && npm run html-template",
"dist-dir": "mkdir -p $npm_package_config_dist_dir\"/js\" && mkdir -p $npm_package_config_dist_dir\"/css\"",
"html-copy": "cd app && find . -name \"*.html\" -type f -exec rsync -R {} \"../\"$npm_package_config_dist_dir\"/\" \\;",
"html-template": "[[ \"$NODE_ENV\" == \"production\" ]] && prod=\"true\" || prod=\"false\"; node -p \"require('lodash').template(require('fs').readFileSync('app/index.html'))({version:'$npm_package_version',production:$prod});\" > $npm_package_config_dist_dir\"/index.html\"",
"html-watch": "nodemon -e html -x \"npm run html-copy\" --watch \"./app\"",
"browserify": "browserify --entry app/app.jsx --outfile $npm_package_config_js_bundle.$npm_package_version.js --transform babelify --verbose",
Expand Down

0 comments on commit b4a2878

Please sign in to comment.