-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.common.js
131 lines (123 loc) · 3.37 KB
/
webpack.config.common.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
const path = require('path');
const webpack = require('webpack');
const ProvidePlugin = webpack.ProvidePlugin;
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const autoprefixer = require('autoprefixer');
const pkg = require('./package.json'); //loads npm config file
const env = process.env.NODE_ENV;
const TARGET = process.env.npm_lifecycle_event;
console.log(env);
console.log("target event is " + TARGET);
var morePlugins=[];
var outputFile = 'bundle.js';
module.exports = {
cache: false,
entry: {
app: "./src/entry.js",
// vendor : Object.keys(pkg.dependencies) //get npm vendors deps from config
vendor : Object.keys(pkg.dependencies).filter(name => (name != 'font-awesome'))
},
module: {
rules: [{
test: /\.js?$/,
// exclude: path.resolve(__dirname, './node_modules'),
exclude: /node_modules/,
use: 'babel-loader'
},{
test: /\.(jpe?g|png|gif)$/,
use: [{
loader: 'url-loader?limit=10000',
options: {
// name: '[path][name].[ext]',
outputPath: 'img/'
}
}]
},{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'url-loader?limit=10000&mimetype=application/font-woff',
options: {
useRelativePath: true,
// name: '[hash].[ext]',
outputPath: 'fonts'
}
}]
},{
test: /fontawesome-webfont\.(ttf|eot|svg|woff)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'file-loader',
options: {
useRelativePath: true,
// name: '[hash].[ext]',
outputPath: 'fonts'
}
}]
},{
test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'file-loader',
options: {
useRelativePath: true,
// name: '[hash].[ext]',
outputPath: 'fonts'
}
}]
},{
test: /\.(svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'raw-loader',
options: {
outputPath: 'img/'
}
}]
},{
test: /\.tag$/,
exclude: /node_modules/,
use: [{
loader: 'riot-tag-loader',
query: {
type: 'es6', // transpile the riot tags using babel
attrs: ['img:src', 'img:data-src', 'link:href'],
sourceMap: true
}
}]
}]
},
node: {
fs: "empty" // avoids error messages
},
plugins: [
new HtmlWebpackPlugin({
title: 'Webpack Riot es6 html',
template: './src/index.html', // Load a custom template (lodash by default see the FAQ for details)
filename: 'index.html',
}),
new webpack.optimize.CommonsChunkPlugin({
name:'vendor',
filename: 'lib/vendor.min.js'
}),
new ProvidePlugin({
jquery: "jquery",
$: "jquery",
jQuery: "jquery"
}),
new webpack.ProvidePlugin({
riot: 'riot',
}),
new webpack.ProvidePlugin({
RiotControl: 'riotcontrol',
}),
new webpack.DefinePlugin({
'APPVERSION': JSON.stringify(pkg.version)
}),
].concat(morePlugins),
resolve: {
alias: {
// bind version of jquery-ui incase if used jquery-ui-dist *only if we want to add all jquery-ui.
// 'jquery-ui': 'jquery-ui-dist/jquery-ui.js',
// bind to modules;
modules: path.join(__dirname, "node_modules")
}
}
};