-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
217 lines (195 loc) · 5.46 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
var gulp = require('gulp');
var webpack = require('webpack-stream');
var connect = require('gulp-connect');
var concat = require('gulp-concat');
var plumber = require('gulp-plumber');
var browserSync = require('browser-sync');
var sass = require('gulp-sass');
var notify = require('gulp-notify');
var htmlreplace = require('gulp-html-replace');
var gulpSequence = require('gulp-sequence');
var gulpif = require('gulp-if');
var del = require('del');
var minifyCSS = require('gulp-minify-css');
var imagemin = require('gulp-imagemin');
var pngquant = require('imagemin-pngquant');
var template = require('gulp-template');
var rename = require('gulp-rename');
var nightwatch = require('gulp-nightwatch');
var shell = require('gulp-shell');
var webpackDev = require('./webpack/webpack.dev.js');
var webpackProd = require('./webpack/webpack.prod.js');
var conf = require('./config/config.json');
var config = {
// Production mode is disabled when running default task (dev mode)
PRODUCTION: true,
// Development server port
PORT: 3000,
// Relative paths to sources and output directories
BOWER: './bower_components',
DIR: 'app/',
SRC_DIR: 'app/src/',
SASS_DIR: 'app/sass/',
ASSETS_DIR: 'app/assets/',
HTML_DIR: 'app/html/',
MAIN_SASS_FILE : 'app.scss',
BUILD_DIR: 'app/.tmp/',
IMAGE_DIR: 'images/',
TEST: 'tests/',
DIST: 'dist/',
DIST_DIR_JS: 'dist/scripts/',
DIST_DIR_CSS: 'dist/styles/',
DIST_DIR_ASSETS: 'dist/assets/',
SCRIPTS_JS_NAME: 'scripts.js',
STYLES_CSS_NAME: 'styles.css',
ENTRY_POINT_FILE: 'app/src/main.js',
WEBPACK_CONFIG:webpackProd,
root: function(path) {
return this.DIR + path;
},
src: function(path) {
return this.SRC_DIR + path;
},
html: function(path) {
return this.HTML_DIR + path;
},
sass: function(path) {
return this.SASS_DIR + path;
},
assets: function(path) {
return this.ASSETS_DIR + path;
},
images: function(path) {
return this.ASSETS_DIR + this.IMAGE_DIR + path;
},
dist: function(path) {
return this.DIST + path;
},
destJS: function(path) {
return this.BUILD_DIR_JS + path;
},
destCSS: function(path) {
return this.BUILD_DIR_CSS + path;
}
};
// Callback function for Plumber
function syntaxError(error){
notify.onError({title: "Error", message: error.Message, sound: "Pop"})(error);
console.log(error.toString());
this.emit("end");
};
// Styles
gulp.task('styles', function()
{
return gulp.src(config.SASS_DIR+config.MAIN_SASS_FILE)
.pipe(plumber({errorHandler: syntaxError}))
.pipe(sass())
.pipe(
gulpif(config.PRODUCTION, minifyCSS())
)
.pipe(concat(config.STYLES_CSS_NAME))
.pipe(
gulpif(!config.PRODUCTION, gulp.dest(config.BUILD_DIR))
)
.pipe(
gulpif(config.PRODUCTION, gulp.dest(config.DIST_DIR_CSS))
)
.pipe(
gulpif(!config.PRODUCTION, browserSync.reload({ stream: true }))
);
});
// Webpack
gulp.task('webpack', function(){
return gulp.src(config.ENTRY_POINT_FILE)
.pipe(plumber({errorHandler: syntaxError}))
.pipe(webpack(config.WEBPACK_CONFIG))
.pipe(
gulpif(!config.PRODUCTION, gulp.dest(config.BUILD_DIR))
)
.pipe(
gulpif(config.PRODUCTION, gulp.dest(config.DIST_DIR_JS))
)
.pipe(
gulpif(!config.PRODUCTION, browserSync.reload({ stream: true }))
);
});
// Html Files
gulp.task('html', function() {
return gulp.src(config.html('template.html'))
.pipe(
gulpif(!config.PRODUCTION,template(conf.dev))
)
.pipe(
gulpif(config.PRODUCTION,template(conf.prod))
)
.pipe(
gulpif(config.PRODUCTION, htmlreplace({
'css': 'styles/styles.css',
'js': 'scripts/scripts.js'
})))
.pipe(rename('index.html'))
.pipe(
gulpif(config.PRODUCTION, gulp.dest(config.DIST))
)
.pipe(
gulpif(!config.PRODUCTION, gulp.dest(config.DIR))
)
.pipe(
gulpif(!config.PRODUCTION, browserSync.reload({ stream: true }))
);
});
// Assets
gulp.task('assets', function() {
return gulp.src([config.assets('**/*'),'!'+config.assets('images')]).pipe(gulp.dest(config.DIST_DIR_ASSETS));
});
// Images
gulp.task('images', function () {
return gulp.src(config.images('*'))
.pipe(imagemin({
progressive: true,
svgoPlugins: [{removeViewBox: false}],
use: [pngquant()]
}))
.pipe(gulp.dest(config.DIST_DIR_ASSETS+config.IMAGE_DIR));
});
// Clean
gulp.task('clean', function (cb) {
return del(config.DIST, cb);
});
// Notify
gulp.task('notify', function () {
return gulp.src("")
.pipe(notify({ message: 'Build Success'}));
});
// Browser Sync
gulp.task('server', ['run'], function() {
browserSync({
port: config.PORT,
server: {
baseDir: config.DIR
}
});
// Watch Files
gulp.watch([config.src('**/*.vue'),config.src('**/*.js')], ['webpack']);
gulp.watch(config.sass('**/**/*.scss'), ['styles']);
gulp.watch(config.html('template.html'), ['html']);
})
//
gulp.task('test:unit',function(){
return gulp.src('')
.pipe(shell('npm run testunit'));
})
gulp.task('test:e2e',function(){
return gulp.src('')
.pipe(nightwatch({
configFile: config.TEST+'nightwatch.json'
}));
})
gulp.task('dev', function() {
config.PRODUCTION = false;
config.WEBPACK_CONFIG = webpackDev;
});
gulp.task('run', ['webpack','styles','html']);
gulp.task('build', gulpSequence('clean', 'run','assets','images','notify'));
/*Default task - development mode*/
gulp.task('default', ['dev', 'server']);