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

25 lines
570 B
JavaScript
Raw Normal View History

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