webpack-auto-inject-version/dist/config.js

25 lines
570 B
JavaScript
Raw Normal View History

2016-10-20 17:58:19 +11:00
module.exports = {
NAME: 'Auto Inject Version',
SHORT: 'AIV',
2016-10-20 19:32:26 +11:00
PATH_PACKAGE: './package.json',
2016-10-21 18:32:35 +11:00
NON_WEBPACK_COMPONENTS: [
2016-10-20 19:32:26 +11:00
{
option: 'autoIncrease',
path: './components/auto-inc-version'
2016-10-21 18:32:35 +11:00
}
],
WEBPACK_COMPONENTS: [
2016-10-20 19:32:26 +11:00
{
2016-10-21 18:32:35 +11:00
option: 'injectByTag',
path: './components/inject-by-tag'
2016-10-20 19:32:26 +11:00
},
{
2016-10-21 18:32:35 +11:00
option: 'injectAsComment',
path: './components/inject-as-comment'
2016-10-20 19:32:26 +11:00
}
2016-10-21 18:32:35 +11:00
],
LOGS_TEXT: {
AIS_START: 'Auto inject version started'
}
2016-10-20 17:58:19 +11:00
};