Add development mode in watch task

This commit is contained in:
the1812 2022-01-04 09:16:24 +08:00
parent 806f6920ed
commit 4d806f48b9

4
.vscode/tasks.json vendored
View File

@ -33,14 +33,14 @@
},
{
"type": "shell",
"command": "yarn webpack --watch --config ./registry/webpack/components.js --progress",
"command": "yarn webpack --watch --config ./registry/webpack/components.js --progress --mode=development",
"group": "build",
"problemMatcher": [],
"label": "功能:监视组件 dev:watch-components"
},
{
"type": "shell",
"command": "yarn webpack --watch --config ./registry/webpack/plugins.js --progress",
"command": "yarn webpack --watch --config ./registry/webpack/plugins.js --progress --mode=development",
"group": "build",
"problemMatcher": [],
"label": "功能:监视插件 dev:watch-plugins"