Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove verbose webpack output #18

Merged
merged 3 commits into from Mar 29, 2018
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

remove verbose webpack output

  • Loading branch information
trickpattyFH20 committed Mar 29, 2018
commit 7e6a6a431f0137b900571791142fb8a90a200589
@@ -10,7 +10,7 @@
"license": "MPL-2.0",
"main": "webpack.config.js",
"scripts": {
"build.dev": "webpack --mode development --display-error-details --progress --verbose --env.dev",
"build.dev": "webpack --mode development --display-error-details --progress --env.dev",

This comment has been minimized.

@chrmod

chrmod Mar 29, 2018
Member

how about adding --verbose to build.watch?

This comment has been minimized.

@trickpattyFH20

trickpattyFH20 Mar 29, 2018
Author Contributor

sure sounds good. I'll add it 👍

"build.prod": "webpack --mode production --display-error-details --progress --env.prod",
"build.watch": "webpack --mode development --watch --display-error-details --progress --env.dev --env.watch",
"prebuild.dev": "node ./tools/licenses/fetchLicenses.js",
@@ -138,6 +138,7 @@ const config = {
licenses: [SASS_DIR + '/licenses.scss'],
},
devtool: 'none',
performance: { hints: false },
output: {
filename: '[name].js',
path: BUILD_DIR
ProTip! Use n and p to navigate between commits in a pull request.