-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
84 lines (74 loc) · 2.11 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
const gulp = require('gulp')
const browserify = require('browserify')
const tsify = require('tsify')
const uglify = require('gulp-uglify')
const ts = require('gulp-typescript')
const sourcemaps = require('gulp-sourcemaps')
const sass = require('gulp-sass')
const nodemon = require('gulp-nodemon')
const livereload = require('gulp-livereload')
const runSequence = require('run-sequence')
const source = require('vinyl-source-stream')
const buffer = require('vinyl-buffer')
const tsProject = ts.createProject('tsconfig.json')
gulp.task('bundle', () => {
return browserify({
basedir: '.',
debug: true,
entries: ['client/src/index.ts'],
cache: {},
packageCache: {}
})
.plugin(tsify)
.transform('babelify', {
presets: ['es2015'],
extensions: ['.ts']
})
.bundle()
.on('error', handleError)
.pipe(source('bundle.min.js'))
.pipe(buffer())
.pipe(sourcemaps.init({loadMaps: true}))
.pipe(uglify()) // Uncomment = minified bundle, comment = browser debugger.
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest('public/js'))
.pipe(livereload())
})
gulp.task('handlebars', function() {
return gulp.src('client/**/*.hbs')
.pipe(livereload())
})
gulp.task('sass', () => {
return gulp.src('client/sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./public/css'))
.pipe(livereload())
})
gulp.task('scripts', () => {
const tsResults = tsProject.src()
.pipe(tsProject())
return tsResults.js.pipe(gulp.dest('dist'))
})
gulp.task('copy-assets', () => {
gulp.src('./client/assets/**/*.{png,jpg}')
.pipe(gulp.dest('public/assets'))
})
function watchServer() {
nodemon({
script: 'dist/index.js',
watch: ['dist/index.js']
})
}
gulp.task('watch', ['scripts', 'bundle', 'sass', 'copy-assets'], () => {
watchServer()
livereload.listen()
gulp.watch('client/assets/**/*.*', ['copy-assets'])
gulp.watch('client/src/**/*.ts', ['bundle'])
gulp.watch('client/sass/**/*.scss', ['sass'])
gulp.watch('client/**/*.hbs', ['handlebars'])
gulp.watch('server/**/*.ts', ['scripts'])
})
function handleError(error) {
console.log(error.toString())
this.emit('end')
}