You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you want to request a feature, report a bug or ask a question?
Bug
What is the current behavior?
Using SpriteLoaderPlugin together with Rule.mimetype results in the error:
Error: Compiling RuleSet failed: Properties mimetype are unknown (at ruleSet[0].rules[0]: [object Object])
at RuleSetCompiler.error (./node_modules/webpack/lib/rules/RuleSetCompiler.js:373:10)
at RuleSetCompiler.compileRule (./node_modules/webpack/lib/rules/RuleSetCompiler.js:196:15)
at ./node_modules/webpack/lib/rules/RuleSetCompiler.js:154:9
at Array.map (<anonymous>)
at RuleSetCompiler.compileRules (./node_modules/webpack/lib/rules/RuleSetCompiler.js:153:16)
at RuleSetCompiler.compileRule (./node_modules/webpack/lib/rules/RuleSetCompiler.js:184:30)
at ./node_modules/webpack/lib/rules/RuleSetCompiler.js:154:9
at Array.map (<anonymous>)
at RuleSetCompiler.compileRules (./node_modules/webpack/lib/rules/RuleSetCompiler.js:153:16)
at RuleSetCompiler.compile (./node_modules/webpack/lib/rules/RuleSetCompiler.js:68:22)
at module.exports (./node_modules/svg-sprite-loader/lib/utils/get-matched-rule-5.js:45:37)
at SVGSpritePlugin.apply (./node_modules/svg-sprite-loader/lib/plugin.js:61:18)
at createCompiler (./node_modules/webpack/lib/webpack.js:74:12)
at create (./node_modules/webpack/lib/webpack.js:123:16)
at webpack (./node_modules/webpack/lib/webpack.js:131:47)
at WebpackCLI.f [as webpack] (./node_modules/webpack/lib/index.js:54:15)
What is the expected behavior?
No errors.
If the current behavior is a bug, please provide the steps to reproduce, at least part of webpack config with loader configuration and piece of your code.
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
This is very similar to #428 and the fix is also similar. In /lib/utils/get-matched-rule-5.js:
const ruleSetCompiler = new RuleSetCompiler([
// ...
new BasicEffectRulePlugin('mimetype'), // add this
// ...
]);
The text was updated successfully, but these errors were encountered:
Do you want to request a feature, report a bug or ask a question?
Bug
What is the current behavior?
Using
SpriteLoaderPlugin
together withRule.mimetype
results in the error:What is the expected behavior?
No errors.
If the current behavior is a bug, please provide the steps to reproduce, at least part of webpack config with loader configuration and piece of your code.
webpack.config.js
:Please tell us about your environment:
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
This is very similar to #428 and the fix is also similar. In
/lib/utils/get-matched-rule-5.js
:The text was updated successfully, but these errors were encountered: