ERROR ValidationError: Progress Plugin Invalid Options
See original GitHub issueVersion
5.0.0-rc.1
Environment info
node: v12.22.0
@vue/cli 5.0.0-rc.1
npm:7.20.3
Steps to reproduce
Migrate from v4
What is expected?
project working good
What is actually happening?
not ok
INFO Starting development server… ERROR ValidationError: Progress Plugin Invalid Options
options should NOT have additional properties
options should NOT have additional properties
options should NOT have additional properties
options should pass "instanceof" keyword validation
options should match exactly one schema in oneOf
ValidationError: Progress Plugin Invalid Options
options should NOT have additional properties options should NOT have additional properties options should NOT have additional properties options should pass “instanceof” keyword validation options should match exactly one schema in oneOf
at validateOptions (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack/node_modules/schema-utils/src/validateOptions.js:32:11)
at new ProgressPlugin (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack/lib/ProgressPlugin.js:62:3)
at new Progress (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/progress-webpack-plugin/index.js:25:21)
at new progressPlugin (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/progress-webpack-plugin/index.js:127:10)
at /Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack-chain/src/Plugin.js:14:18
at Object.toConfig (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack-chain/src/Plugin.js:78:22)
at /Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack-chain/src/Config.js:129:63
at Array.map (<anonymous>)
at module.exports.toConfig (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/webpack-chain/src/Config.js:129:40)
at Service.resolveWebpackConfig (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/@vue/cli-service/lib/Service.js:261:34)
at PluginAPI.resolveWebpackConfig (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/@vue/cli-service/lib/PluginAPI.js:132:25)
at serve (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/@vue/cli-service/lib/commands/serve.js:73:31)
at Service.run (/Users/Documents/WORKSPACE/JTeam/test/packages/jms-web-main/node_modules/@vue/cli-service/lib/Service.js:246:12)
at processTicksAndRejections (internal/process/task_queues.js:97:5)
error Command failed with exit code 1.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7
Top Results From Across the Web
ValidationError: Progress Plugin Invalid Options - Stack Overflow
When I run my project from angular cli. it shows me this error. (image attached). I have updated my node_module files and search...
Read more >ValidationError: progress plugin invalid options-Vue.js
Run npm update and re-create the project again. Also make sure you are on the latest versions of the following. node -v &&...
Read more >ProgressPlugin breaks with webpack 4.25.* due to incorrect ...
The log given by the failure. Progress Plugin Invalid Options. options['colors'] is an invalid additional property
Read more >Vue CLI ValidationError: webpack Dev Server Invalid Options
This morning I ran into an issue creating a new Vue project using the Vue CLI. The strange thing about this is that...
Read more >My Battle with Node, Npm, Webpack and its Progress plugin
It was our fault all the time, but we didn't know how and why and we wanted to know. ... ValidationError: Progress Plugin...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
process.env.VUE_CLI_TEST = false
to upvue.config.js
fix that.I just did what websharik, and it was working but I still had a warning which was =>
(node:9149) [DEP_WEBPACK_COMPILATION_NORMAL_MODULE_LOADER_HOOK] DeprecationWarning: Compilation.hooks.normalModuleLoader was moved to NormalModule.getCompilationHooks(compilation).loader (Use
node --trace-deprecation …to show where the warning was created)
I found this SO post which said to run
npm update
and re-create the project. I only did the former and it worked like a charm in case anyone got the same problem.