vuejs / vue-template-validator

Catch common syntax errors in Vue.js templates at compile time.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm warning

tomByrer opened this issue · comments

npm WARN vue-template-validator@1.1.5 requires a peer of parse5@^2.1.0 but none was installed.

What do you require to do here? Why not make it a dependency?

@yyx990803 warning "vue-template-validator@1.1.5" has incorrect peer dependency "parse5@^2.1.0" this problem is still actual! any ideas how to solve it?

@eshimischi @tomByrer Add this to your project's package.json:

"parse5": "^2.0.0",

Then run npm install you'll be good =]

@eshimischi @tomByrer Add this to your project's package.json:

"parse5": "^2.0.0",

Then run npm install you'll be good =]

Thank you very much.