We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to have a working build.
Instead of a working build I get a few errors like the following since the release of 3.5.0:
You may need an additional loader to handle the result of these loaders. | exports.locals = { | "select": "select--2hibluCduK", > "options-list": "options-list--2Jo8LXWh5s" "optionsList": "options-list--2Jo8LXWh5s" | }; | module.exports = exports; @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/Select/select.scss 2:26-187 @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/Select/Select.js @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/Select/index.js @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/MultiSelect/MultiSelect.js @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/MultiSelect/index.js @ ./src/Sulu/Bundle/AdminBundle/Resources/js/components/index.js @ ./src/Sulu/Bundle/MediaBundle/Resources/js/components/MimeTypeIndicator/MimeTypeIndicator.js @ ./node_modules/react-styleguidist/lib/loaders/styleguide-loader.js!./node_modules/react-styleguidist/lib/client/index.js @ ./node_modules/react-styleguidist/lib/client/index.js @ multi regenerator-runtime/runtime ./src/Sulu/Bundle/AdminBundle/Resources/js/containers/Application/global.scss ./src/Sulu/Bundle/AdminBundle/Resources/js/containers/Application/styleguidist.scss ./node_modules/react-styleguidist/lib/client/index n
It seems like a comma is not inserted when using localsConvention: 'camelCase' as an option.
localsConvention: 'camelCase'
.options-list { // unrelated properties }
css-loader
The text was updated successfully, but these errors were encountered:
met the same issue, and I found it was caused by this commit: 1b29b28#diff-2b4ca49d4bb0a774c4d4c1672d7aa781R331
Two indexes passed to addExportToLocalsCode in camelCase arm are both recognized as last index if camcelCase(name) is not equal to name.
addExportToLocalsCode
camelCase
camcelCase(name)
name
Temporary fixing: use camcelCaseOnly if your code didn't rely on origin name exported by your css
camcelCaseOnly
Sorry, something went wrong.
Thanks, WIP
locals
Successfully merging a pull request may close this issue.
Expected Behavior
I want to have a working build.
Actual Behavior
Instead of a working build I get a few errors like the following since the release of 3.5.0:
It seems like a comma is not inserted when using
localsConvention: 'camelCase'
as an option.Code
.options-list { // unrelated properties }
How Do We Reproduce?
localsConvention: 'camelCase'
option of thecss-loader
The text was updated successfully, but these errors were encountered: