-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-scripts.js
78 lines (63 loc) · 1.52 KB
/
build-scripts.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
'use strict'
var gulp = require('gulp')
var webpack = require('webpack')
var gutil = require('gulp-util')
var config = require('./config')
function wptask(mode) {
var cfg = genWebpackConfig({
dest: config.dist + '/d',
env: process.env.NODE_ENV,
watchMode: mode === 'watch',
})
return function (cb) {
webpack(cfg, function (err, stats) {
if (err) throw new gutil.PluginError('webpack:build', err)
var statsJson = stats.toJson()
var needLog = mode === 'watch'
|| statsJson.errors.length
|| statsJson.warnings.length
if (needLog) {
gutil.log('[webpack:build]', stats.toString({
colors: true,
}))
}
cb()
})
}
}
gulp.task('build-scripts', wptask())
gulp.task('watch-scripts', wptask('watch'))
function genWebpackConfig(opt) {
// default config
var cfg = {
entry: {
'demo': './src/demo'
},
output: {
filename: '[name]/index.js',
path: opt.dest,
},
devtool: '#source-map',
plugins: [
new webpack.NoErrorsPlugin(),
//new webpack.optimize.CommonsChunkPlugin('refashion-lib/base.js'),
],
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [
{ test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel' },
{
test: /\.scss$/,
loaders: ["style-loader", "css-loader", "sass-loader"]
},
{ test: /\.css$/, loader: 'style!css?localIdentName=[local]___[hash:base64:5]&sourceMap'},
{ test: /\.png$/, loader: "url-loader?mimetype=image/png" }
],
}
}
// watch mode
if (opt.watchMode) cfg.watch = true
return cfg
}