github shellscape/webpack-manifest-plugin v2.0.0-rc.1

latest releases: v5.0.0, v4.1.1, v4.1.0...
pre-release6 years ago

BREAKING CHANGES:

  • Drop support for node 0.10 and 0.12 43b48f1
  • Drop support for webpack 1 43b48f1
  • basePath is not ignored when publicPath is used #74
  • basePath 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's output.publicPath #80
  • stripStr option was removed #83
  • cache option was renamed seed a3db580
  • reduce option was replaced by generate option #90
  • keys are not sorted anymore ae03fbd

fixes:

  • paths are consistent from os to os #78

features:

  • use basePath for keys only #74
  • add plugin hook to allow other plugins to use the manifest #76
  • add assets to manifest 4cb95ce
  • add generate option #90
  • add sort option ae03fbd

Don't miss a new webpack-manifest-plugin release

NewReleases is sending notifications on new releases.