forked from PolymerX/polymer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-module-build.config.js
61 lines (57 loc) · 1.23 KB
/
webpack-module-build.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const {resolve} = require('path');
const webpack = require('webpack');
const pkg = require('./package.json');
/**
* === ENV configuration
*/
const ENV = process.env.NODE_ENV;
const outputPath = resolve('dist');
const processEnv = {
NODE_ENV: JSON.stringify(ENV),
appVersion: JSON.stringify(pkg.version)
};
/**
* Plugin configuration
*/
const plugins = [new webpack.DefinePlugin({'process.env': processEnv})];
/**
* === Webpack configuration
*/
module.exports = {
entry: './src/index.js',
output: {
path: outputPath,
filename: 'module.bundle.js'
},
devtool: 'cheap-module-source-map',
module: {
rules: [
{
test: /\.js$/,
// We need to transpile Polymer itself and other ES6 code
// exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: [[
'env',
{
targets: {browsers: ['last 2 Chrome versions', 'Safari 10']},
debug: true
}
]]
}
}
},
{
test: /\.html$/,
use: ['text-loader']
},
{
test: /\.postcss$/,
use: ['text-loader', 'postcss-loader']
}
]
},
plugins
};