copy-webpack-plugin
Advanced tools
Changelog
6.0.0 (2020-05-15)
10.13
,new CopyPlugin(patterns, options)
to new CopyPlugin({ patterns, options })
compilation.additionalAssets
hookignore
option (which accepted micromatch syntax) was removed in favor globOptions.ignore
(which accepts fast-glob pattern-syntax)test
option was removed in favor the transformPath
optioncache
option was renamed to the cacheTransform
option, cacheTransform
option should have only directory
and keys
properties when it is an objectcontext
and ignore
options were removed in favor patten.context
and pattern.globOptions.ignore
optionsfrom
option now can only be a string, if you use { from: { glob: 'directory/**', dot: false } }
changed it to { from: 'directory/**', globOptions: { dot: false } }
copyUnmodified
was removed without replacements2
version of webpack-dev-server
is not supported anymorelogLevel
was removed in favor the infrastructureLogging.level
option, please read the documentationconcurrency
option (#466) (c176d7d)directory
option for the cacheTransform
option (29254e3)noErrorOnMissing
option (#475) (e3803ce)