Skip to content

v5.0.0

Latest
Compare
Choose a tag to compare
@pirelenito pirelenito released this 05 May 20:52
· 9 commits to main since this release

Breaking change

Fix issue "Unable to load 4.0 using require" #66 #67 by changing how we export the library to rely in named exports.

The change to consumers will be that instead of requiring via:

const GitRevisionPlugin = require('git-revision-webpack-plugin')

It should be via:

const { GitRevisionPlugin } = require('git-revision-webpack-plugin')