50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
var path = require('path');
|
|
// Require WebpackAutoInject from npm installed modules ( preferred )
|
|
// var WebpackAutoInject = require('webpack-auto-inject-version').default;
|
|
// Require WebpackAutoInject from dist - dev purpose only ( do not use the below line )
|
|
var WebpackAutoInject = require('../dist/WebpackAutoInjectVersion').default;
|
|
|
|
module.exports = {
|
|
entry: {
|
|
index: './src/main.js'
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.html']
|
|
},
|
|
output: {
|
|
filename: '[name]-bundle.js',
|
|
path: path.resolve(process.cwd(), 'dist')
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.js$/,
|
|
include: [
|
|
path.resolve('src')
|
|
]
|
|
},
|
|
{
|
|
test: /\.json$/,
|
|
loader: 'json-loader'
|
|
},
|
|
{
|
|
test: /\.txt$/,
|
|
loader: 'raw-loader'
|
|
},
|
|
{
|
|
test: /\.html$/,
|
|
loader: 'raw-loader!html-minify-loader'
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new WebpackAutoInject({
|
|
PACKAGE_JSON_PATH: './package.json',
|
|
components: {
|
|
AutoIncreaseVersion: true,
|
|
InjectAsComment: true,
|
|
InjectByTag: true
|
|
}
|
|
})
|
|
]
|
|
};
|