Remove --info-verbosity args since webpack-cli@4.x no longer supports it (#925)

This commit is contained in:
Jinbo Wang 2020-12-17 16:18:41 +08:00 committed by GitHub
parent 23b3703400
commit 4f6951db29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "tsc -p . && webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --info-verbosity verbose",
"watch": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js --mode=\"production\"",
"test": "npm run compile && node ./out/test/index.js"
},