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')