Skip to content

Instantly share code, notes, and snippets.

@ionware
Created January 29, 2019 16:11
Show Gist options
  • Save ionware/371e3df2dabafc55088b027c91798e04 to your computer and use it in GitHub Desktop.
Save ionware/371e3df2dabafc55088b027c91798e04 to your computer and use it in GitHub Desktop.
NPM script for medium post
{
"scripts": {
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"test": "echo \"Error: no test specified\" && exit 1"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment