24 lines
513 B
JavaScript
24 lines
513 B
JavaScript
|
module.exports = {
|
||
|
NAME : 'Auto Inject Version',
|
||
|
SHORT : 'AIV',
|
||
|
PATH_PACKAGE : './package.json',
|
||
|
NON_WEBPACK_COMPONENTS : [
|
||
|
{
|
||
|
option : 'autoIncrease',
|
||
|
path : './components/auto-inc-version'
|
||
|
}
|
||
|
],
|
||
|
WEBPACK_COMPONENTS : [
|
||
|
{
|
||
|
option : 'injectByTag',
|
||
|
path : './components/inject-by-tag'
|
||
|
},
|
||
|
{
|
||
|
option : 'injectAsComment',
|
||
|
path : './components/inject-as-comment'
|
||
|
}
|
||
|
],
|
||
|
LOGS_TEXT : {
|
||
|
AIS_START : 'Auto inject version started'
|
||
|
}
|
||
|
}
|