@bpedziwiatr/gitversion-webpack-plugin
v1.1.0
Published
Webpack plugin to add gitversion information to outputfiles
Downloads
15
Maintainers
Readme
Webpack plugin
Plugin allows to call gitversion cli (assume is installed on machine). To get version information and append output css/js files from webpack assets.
example:
// gitversion - Branch.feature-issue23-cr.Sha.a2f0053911d75e6c1bc3137ba8c26f1a1c37f0c3
(function webpackUniversalModuleDefinition(root, factory) {
Options
appendFile
add gitversion at end if true present, else at begining of fileregex
- regex to find css/js default ".js$|.css$"useDotnet
- params to switch beetweengitversion
(false) anddotnet-gitversion
(true)
interface GitVersionPluginOptions {
appendFile?: boolean;
regex?: string;
useDotnet?: boolean;
}
Webpack setup
import GitVersionPlugin = require('@bpedziwiatr/gitversion-webpack-plugin');
...
plugins: [
...
new GitVersionPlugin.default({ useDotnet: true }),
]