-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
151 lines (140 loc) · 4.52 KB
/
webpack.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
"use strict";
require('babel-register')({
presets: ['es2015', 'stage-0']
});
require("babel-polyfill");
const path = require('path');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
const recursive = require('recursive-readdir');
const PAGE_PATH = path.resolve('./templates/');
const JS_PATH = path.resolve('./javascript/');
let baseWebpackConfig = {
resolve: {
alias: {
js: path.resolve('./javascript/'),
common: path.resolve('./javascript/common/'),
mcss: path.resolve('./mcss/'),
img: path.resolve('./img/'),
component: path.resolve('./javascript/component/'),
dep: path.resolve('./node_modules/')
}
},
entry: {
lodash: 'lodash',
'nek-ui': 'nek-ui',
venderB: path.resolve('javascript/component/b.js')
},
output: {
path: path.resolve(__dirname, './dist'),
filename: 'javascript/[name].[chunkhash:8].js',
chunkFilename: '[name].[chunkhash:8].js',
publicPath: '/'
},
externals: {
// 'nek-ui': 'NEKUI',
// Regular: 'Regular'
},
module: {
rules: [{
test: /\.woff|\.woff2|\.svg|.eot|\.ttf/,
loader: 'file-loader'
}, {
test: /\.png$/,
use: {
loader: 'url-loader',
options: {
name: '[path][name].[ext]',
limit: 10000,
mimetype: 'image/png'
}
}
}, {
test: /\.jpe$|\.jpg$|\.jpeg/,
use: {
loader: 'url-loader',
options: {
name: '[path][name].[ext]',
limit: 10000,
mimetype: 'image/jpeg'
}
}
}, {
test: /\.gif$/,
use: {
loader: 'url-loader',
options: {
name: '[path][name].[ext]',
limit: 10000,
mimetype: 'image/gif'
}
}
}, {
test: /\.html$/,
use: 'html-loader'
}, {
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['es2015']
}
}
}, {
test: /\.m?css$/,
use: ExtractTextPlugin.extract(['css-loader', 'mcss-loader'])
}]
},
plugins: [
new ExtractTextPlugin("stylesheet/[name].css")
]
};
function isPageFtl(filePath) {
return filePath.startsWith(['templates', 'page', ''].join(path.sep));
}
const generateWebpackConfig = (files, baseWebpackConfig) => {
let files2Move = [];
files.forEach(file => {
let filename = path.relative(__dirname, file);
if (isPageFtl(filename)) {
let keyPath = file.replace(PAGE_PATH, '')
.replace(/\\/g, '/')
.replace(/\.ftl$/, '')
.slice(1);
let key = keyPath.replace(path.sep, '.');
baseWebpackConfig.entry[key] = path.resolve(path.resolve(JS_PATH, keyPath)) + '.js';
baseWebpackConfig.plugins.push(new HtmlWebpackPlugin({
chunks: ['common', 'lodash', 'venderB', key, 'main', 'nek-ui'], //CommonChunkPlugin中的main
template: file,
filename: filename
}));
} else {
files2Move.push({
from: path.resolve(filename),
to: path.resolve('dist/', filename)
});
}
});
baseWebpackConfig.plugins.push(new CopyWebpackPlugin(files2Move));
baseWebpackConfig.plugins.push(new webpack.optimize.CommonsChunkPlugin({
names: ['common', 'main'], //main是webpack启动的脚本, 有个其他文件都要用的jsonp方法在此声明
minChunks: 10
}));
console.log(JSON.stringify(baseWebpackConfig))
return baseWebpackConfig;
};
module.exports = new Promise((resolve, reject) => {
recursive(PAGE_PATH, (err, files) => {
// Files is an array of filename
let filerFilesFunc = file => /\.ftl$/.test(file);
if (err) {
console.log(err);
return;
}
files = files.filter(filerFilesFunc);
resolve(generateWebpackConfig(files, baseWebpackConfig));
});
});