Releases: shellscape/webpack-manifest-plugin
Releases · shellscape/webpack-manifest-plugin
v2.0.0-rc.1
BREAKING CHANGES:
- Drop support for node 0.10 and 0.12 43b48f1
- Drop support for webpack 1 43b48f1
basePath
is not ignored whenpublicPath
is used #74basePath
is only modifying manifest keys #74
module.exports = {
entry: './index.js',
output: {
path: 'build',
+ publicPath: '/app/'
}
plugins: [
new ManifestPlugin({
basePath: '/app/'
})
]
}
- add extra keys to manifest when using copy-webpack-plugin 4cb95ce
- paths are using the linux path separator even on windows #78
publicPath
options was replaced by webpack'soutput.publicPath
#80stripStr
option was removed #83cache
option was renamedseed
a3db580reduce
option was replaced bygenerate
option #90- keys are not sorted anymore ae03fbd
fixes:
- paths are consistent from os to os #78
features: