Skip to content

Instantly share code, notes, and snippets.

@qcom
Created May 19, 2015 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qcom/7dec9434e04435ab3d9e to your computer and use it in GitHub Desktop.
Save qcom/7dec9434e04435ab3d9e to your computer and use it in GitHub Desktop.
admire my tests ;)
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-css": "cat public/css/global.css public/css/newLayout/*.css > public/css/style.css",
"build-js": "browserify public/js/newLayout/main.js > public/js/newLayout/bundle.js",
"build": "npm run build-css & npm run build-js",
"start": "npm run build && NODE_ENV=production pm2 start app.js",
"watch-css": "catw public/css/global.css public/css/newLayout/*.css -o public/css/style.css",
"watch-js": "watchify public/js/newLayout/main.js -o public/js/newLayout/bundle.js",
"watch": "npm run watch-css & npm run watch-js",
"start-dev": "npm run watch & nodemon app.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment