Skip to content

Instantly share code, notes, and snippets.

@dgrebb
Last active September 21, 2017 15:04
Show Gist options
  • Select an option

  • Save dgrebb/02c1d720d1bcd7c7b0efada38cc7d8bb to your computer and use it in GitHub Desktop.

Select an option

Save dgrebb/02c1d720d1bcd7c7b0efada38cc7d8bb to your computer and use it in GitHub Desktop.
webpack version plugin

Define a webpack plugin that pulls version information from package.json.

// any-module.js
console.log("Version: " + VERSION);
// webpack.config.js
plugins: [
new webpack.DefinePlugin({
VERSION: JSON.stringify(require("package.json").version)
})
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment