-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
134 lines (97 loc) · 2.72 KB
/
gulpfile.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
var gulp = require('gulp');
var gutil = require('gulp-util');
var shell = require('gulp-shell');
var NwBuilder = require('nw-builder');
var webpack = require('webpack');
var del = require('del');
var config = require('./webpack.config');
var config_stage = require('./webpack.stage.config');
var config_production = require('./webpack.production.config');
var PACKAGE_JSON = require('./package.json');
gulp.task('webpack-d', function(done) {
webpack(config, function (err, stats){
if (err) throw new gutil.PluginError('webpack', err);
gutil.log('[webpack]', stats.toString({}));
done();
});
});
gulp.task('webpack-s', function(done) {
webpack(config_stage, function (err, stats){
if (err) throw new gutil.PluginError('webpack', err);
gutil.log('[webpack]', stats.toString({}));
done();
});
});
gulp.task('webpack-p', function(done) {
webpack(config_production, function (err, stats){
if (err) throw new gutil.PluginError('webpack', err);
gutil.log('[webpack]', stats.toString({}));
done();
});
});
gulp.task('nw-resource', function() {
var resourcePath = './resource';
del([resourcePath]);
gulp.src(['*.html', 'semantic/**/*', 'dist/*.js', 'package.json', 'images/**/*'], {
base: './'
})
.pipe(gulp.dest(resourcePath));
});
gulp.task('nw-build-del', function() {
var buildDir = './build';
del([buildDir]);
});
gulp.task('nw-build-win', function() {
var buildDir = './build';
var nw = new NwBuilder({
files: ['resource/**/*'], // use the glob format
version: '0.12.3',
platforms: ['win32', 'win64'],
appName: PACKAGE_JSON.name,
appVersion: PACKAGE_JSON.version,
buildDir: buildDir,
winIco : 'images/logo.ico'
});
nw.on('log', console.log);
// Build returns a promise
nw.build().then(function () {
console.log('win all done!');
}).catch(function (error) {
console.error(error);
});
});
gulp.task('nw-build-osx', function() {
var buildDir = './build';
var nw = new NwBuilder({
files: ['resource/**/*'], // use the glob format
version: '0.12.3',
platforms: ['osx64'],
appName: PACKAGE_JSON.name,
appVersion: PACKAGE_JSON.version,
buildDir: buildDir,
macZip: true,
macIcns : 'images/logo.icns'
});
nw.on('log', console.log);
// Build returns a promise
nw.build().then(function () {
console.log('osx all done!');
}).catch(function (error) {
console.error(error);
});
});
gulp.task('nw-build', shell.task([
'gulp nw-build-del',
'gulp nw-build-win',
'gulp nw-build-osx'
]));
gulp.task('stage', shell.task([
'gulp webpack-s',
'gulp nw-resource',
'gulp nw-build'
]));
gulp.task('production', shell.task([
'gulp webpack-p',
'gulp nw-resource',
'gulp nw-build'
]));