-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
87 lines (72 loc) · 2.1 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
'use strict'
const gulp = require('gulp')
const mergeStream = require('merge-stream')
const globals = {
dirname: __dirname
}
const { webpack, moveResources, sass, vendor, clean } = require('kth-node-build-commons').tasks(globals)
/**
* Usage:
*
* One-time build of browser dependencies for development
*
* $ gulp build:dev
*
* Continuous re-build during development
*
* $ gulp watch
*
* One-time build for Deployment (Gulp tasks will check NODE_ENV if no option is passed)
*
* $ gulp build [--production | --reference]
*
* Remove the generated files
*
* $ gulp clean
*
**/
// *** Deployment helper tasks ***
gulp.task('webpackDeploy', function () {
// Returning merged streams at the end so Gulp knows when async operations have finished
return mergeStream(
webpack('reference'),
webpack('production')
)
})
gulp.task('vendorDeploy', function () {
// Returning merged streams at the end so Gulp knows when async operations have finished
return mergeStream(
vendor('reference'),
vendor('production')
)
})
// *** Development helper tasks ***
gulp.task('webpack', webpack)
gulp.task('vendor', vendor)
gulp.task('moveResources', function () {
// Returning merged streams at the end so Gulp knows when async operations have finished
moveResources.cleanKthStyle()
return mergeStream(
moveResources.moveKthStyle(),
moveResources.moveBootstrap(),
moveResources.moveFontAwesome(),
// Move project image files
gulp.src('./public/img/*')
.pipe(gulp.dest('dist/img'))
)
})
gulp.task('transpileSass', () => sass())
/* Put any addintional helper tasks here */
/**
*
* Public tasks used by developer:
*
*/
gulp.task('clean', clean)
gulp.task('build:dev', ['moveResources', 'vendor', 'webpack'], () => sass())
gulp.task('build', ['moveResources', 'vendorDeploy', 'webpackDeploy'], () => sass())
gulp.task('watch', ['build:dev'], function () {
gulp.watch(['./public/js/app/**/*.js', './public/js/components/**/*'], ['webpack'])
gulp.watch(['./public/js/vendor.js'], ['vendor'])
gulp.watch(['./public/css/**/*.scss'], ['transpileSass'])
})