Skip to content

Instantly share code, notes, and snippets.

@midnite81
Last active June 7, 2017 10:39
Show Gist options
  • Save midnite81/2e790cd9b907118b60ab9978371f7014 to your computer and use it in GitHub Desktop.
Save midnite81/2e790cd9b907118b60ab9978371f7014 to your computer and use it in GitHub Desktop.
scripts needed for mix
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --watch-poll --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
@CurtisSaunders
Copy link

Loving your work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment