-
Notifications
You must be signed in to change notification settings - Fork 113
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
[Bug Report] release 1.0.1 Sass Loader does not match the API schema #119
Comments
there have been reports of vue-cli 4 not working with sass-loader version 8.0.0. do you have it installed in your project? Try downgrading to [email protected] should work. |
Hello, fixed since rc.3, I'm in rc.7. Everything was ok with rc.7 and sass-loader 8.0.0 before release 1.0.1 I evoked the issue just above :) |
I can replicate on my setup as well. This does not seem to be a vue-cli or sass-loader issue. Running [email protected] and [email protected] works with this plugin on v1.0.0, but not v1.0.1 |
I can confirm this too. Here is the complain from vue-cli-plugin-vuetify using version 1.0.1 by default at that time:
|
both might be caused by: that should probably be changed to |
same here :( sticking with sass-loader v7.3.1 for long as this works all together. |
@bromix @claudio10 For my personal knowledge, how do you achieve that? I mean, how do you get that particular version 7.3.1 of sass-loader rather than the 8.0.0?
Do you do some manual import and then package.json editing? |
@willemavjc here’s what you need to do:
// package.json
// ...
// Change this:
“sass-loader”: "^8.0.0"
// To this:
“sass-loader”: "^7.3.1"
|
Just to complete information posted by @kdaghari for NPM: with NPM you simply do an installation adding a at-sign, just like:
|
Just remove the "^" and set the version fix in the package. Same like pip (requirements in python)
For updating dependencies I only use "ncu" because npm won't update major updates. |
Please try the latest release |
It's working :D Thanks. |
Confirmed working on |
Perfect, thx a lot :) ! |
Not working with Some file seems to be now missing:
Scenario tested implies Docker and is as such:
|
this is a different bug, if you specify the version number in
make sure you do: vue create .
vue add [email protected]
vue invoke vuetify
yarn serve |
@DRoet Thanks. Confirmed working with vue/[email protected] ...and not working with @4.0.3, with the same error you mentioned in the new issue #4700 on Vue.js GitHub. |
Would someone be able to clarify if the following warning is a real issue?
In package.json I can see this:
I don't really understand what is happening and what it does really imply. |
It shouldn't be an issue if your package.json has 8.0.0, warning will be fixed by #123. |
Coming back to this interesting remark: |
you should select is, but there are two options in the cli |
sass-loader 9.0.0 broke it again btw
|
hello, since last release & vue cli 4
I would take a look as soon as I have a little time, if I can help do not hesitate.
how to reproduce :
The text was updated successfully, but these errors were encountered: