webpack-auto-inject-version/demo/webpack.conf.js

64 lines
1.4 KiB
JavaScript
Raw Normal View History

const path = require('path');
2017-04-11 09:15:51 +10:00
// Require WebpackAutoInject from npm installed modules ( preferred )
2017-04-13 08:40:22 +10:00
// var WebpackAutoInject = require('webpack-auto-inject-version');
2017-04-11 09:11:09 +10:00
// Require WebpackAutoInject from dist - dev purpose only ( do not use the below line )
const WebpackAutoInject = require('../dist/WebpackAutoInjectVersion');
2017-04-11 09:11:09 +10:00
module.exports = {
watch: true,
2017-04-11 09:11:09 +10:00
entry: {
index: ['./src/main.js'],
2017-04-11 09:11:09 +10:00
},
resolve: {
extensions: ['.js', '.html'],
2017-04-11 09:11:09 +10:00
},
output: {
filename: '[name]-bundle.js',
path: path.resolve(process.cwd(), 'dist'),
2017-04-11 09:11:09 +10:00
},
module: {
loaders: [
{
test: /\.js$/,
include: [
path.resolve('src'),
],
2017-04-11 09:11:09 +10:00
},
{
test: /\.json$/,
loader: 'json-loader',
2017-04-11 09:11:09 +10:00
},
{
test: /\.txt$/,
loader: 'raw-loader',
2017-04-11 09:11:09 +10:00
},
{
test: /\.html$/,
loader: 'raw-loader!html-minify-loader',
},
],
2017-04-11 09:11:09 +10:00
},
plugins: [
new WebpackAutoInject({
components: {
AutoIncreaseVersion: false,
InjectAsComment: false,
InjectByTag: true,
},
componentsOptions: {
AutoIncreaseVersion: {
runInWatchMode: false, // it will increase version with every single build!
},
InjectAsComment: {
tag: 'Version: {version}, {date}',
},
InjectByTag: {
fileRegex: /\.+/,
dateFormat: 'h:MM:ss',
},
},
}),
],
2017-04-11 09:11:09 +10:00
};