Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.1.1
->^5.0.2
Release Notes
webpack-contrib/css-loader
v5.0.2
Compare Source
v5.0.1
Compare Source
v5.0.0
Compare Source
⚠ BREAKING CHANGES
sourceMap: true
getLocalIdent
escapes by default, theexportName
value is always unescaped/\.icss\.\w+$/i
(themodules.compileType
option isicss
)[emoji]
placeholder was deprecatedicss
option was removed (it was deprecated previously)Features
url()
/@import
(#1195) (dd52931)null
/undefined
(#1193) (0f95841)v4.3.0
Compare Source
Features
importLoaders
can bestring
(#1178) (ec58a7c)Bug Fixes
url
function (88b8ddc)4.2.2 (2020-08-24)
Bug Fixes
compiler.context
and usewebpack://
protocol (#1169) (fb5c53d)4.2.1 (2020-08-06)
Bug Fixes
exportOnlyLocals
option, nowlocals
are not exported under thelocals
name, it was big regression, we apologize for that (24c0a12)v4.2.2
Compare Source
v4.2.1
Compare Source
v4.2.0
Compare Source
Features
module.type
option, theicss
option is deprecated (#1150) (68f72af)4.1.1 (2020-07-30)
Bug Fixes
console
call (#1148) (b1b90ca)v4.1.1
Compare Source
v4.1.0
Compare Source
Features
icss
option (#1140) (a8ec7da)Bug Fixes
data
URLs (#1142) (91bc64b)v4.0.0
Compare Source
⚠ BREAKING CHANGES
Node.js
version is10.13.0
webpack
version is4.27.0
esModule
option istrue
by defaultsourceMap
option depends on thedevtool
optionicss
plugin disable by default, you need to setup themodules
option to enable itmodules
option istrue
by default for all files matching/\.module\.\w+$/i.test(filename)
regular expression,module.auto
istrue
by defaultmodules.context
option was renamed to themodules.localIdentContext
optionmodules.localIdentContext
value iscompiler.context
for themodule.getLocalIdent
optionmodules.hashPrefix
option was renamed to themodules.localIdentHashPrefix
optionlocalsConvention
option was moved and renamed to themodules.exportLocalsConvention
optiongetLocalIndent
option should be alwaysFunction
and should always returnString
valueonlyLocals
option was moved and renamed to themodules.exportOnlyLocals
optionimport
option were changed, it is nowfunction(url, media, resourcePath) {}
~
before the file request, i.e. rewriteurl(~!!loader!package/img.png)
tourl(!!loader!~package/img.png)
Features
@value
supports importingurl()
(#1126) (7f49a0a)url()
resolving algorithm (bc19ddd)style
field from package.json (#1099) (edf5347)file:
protocol (5604205)Bug Fixes
~
inside packages innode_modules
(76f1480)v3.6.0
Compare Source
Features
modules.auto
to be a filter function (#1086) (0902353)3.5.3 (2020-04-24)
Bug Fixes
3.5.2 (2020-04-10)
Bug Fixes
modules.auto
option (#1075) (8c9ffe7)3.5.1 (2020-04-07)
Bug Fixes
locals
(#1072) (866b84a)v3.5.3
Compare Source
v3.5.2
Compare Source
v3.5.1
Compare Source
v3.5.0
Compare Source
Features
modules.auto
option, please look at an example of how you can simplify the configuration. (#1067) (c673cf4)modules.exportGlobals
option for export global classes and ids (#1069) (519e5f4)modules.mode
option may be a function (#1065) (0d8ac3b)3.4.2 (2020-01-10)
Bug Fixes
composes
(#1040) (df79602)3.4.1 (2020-01-03)
Bug Fixes
undefined
when sourceRoot is unavailable (#1036) (ded2a79)v3.4.2
Compare Source
v3.4.1
Compare Source
v3.4.0
Compare Source
Features
esModule
option (#1026) (d358cdb)Bug Fixes
3.3.2 (2019-12-12)
Bug Fixes
3.3.1 (2019-12-12)
Bug Fixes
@import
at-rulesrequire
(#1014) (e091d27)v3.3.2
Compare Source
v3.3.1
Compare Source
v3.3.0
Compare Source
Features
pure
css modules (#1008) (6177af5)Bug Fixes
null
orundefined
(#1006) (6769783)require
(#1004) (80e9662)3.2.1 (2019-12-02)
Bug Fixes
url
function (#1001) (8f4d6f5)v3.2.1
Compare Source
v3.2.0
Compare Source
Bug Fixes
.
characters in localIndent to-
character (regression) (#982) (967fb66)Features
v3.1.0
Compare Source
Bug Fixes
-
(it was regression in3.0.0
version) (#972) (f51859b)Features
modules.getLocalIdent
to return a falsy value (#963) (9c3571c)v3.0.0
Compare Source
Bug Fixes
Function
behavior forurl
andimport
options (#939) (e9eb5ad)Features
@value
at-rule in selectors (#941) (05a42e2)BREAKING CHANGES
@value
at rules now support inselector
, recommends checking all@values
at-rule usage (hint: you can add prefix to all@value
at-rules, for example@value v-foo: black;
or@value m-foo: screen and (max-width: 12450px)
, and then do upgrade){Function}
behavior forurl
andimport
options (need returntrue
when you want handleurl
/@import
and returnfalse
if not)camelCase
option was remove in favorlocalsConvention
option, also it is accept only{String}
value (usecamelCase
value if you previously value wastrue
andasIs
if you previously value wasfalse
)exportOnlyLocals
option was remove in favoronlyLocals
optionmodules
option now can be{Object}
and allow to setupCSS Modules
options:localIdentName
option was removed in favormodules.localIdentName
optioncontext
option was remove in favormodules.context
optionhashPrefix
option was removed in favormodules.hashPrefix
optiongetLocalIdent
option was removed in favormodules.getLocalIdent
optionlocalIdentRegExp
option was removed in favormodules.localIdentRegExp
optionRenovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.