-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
89 lines (75 loc) · 2.69 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
/*jshint node: true*/
/* TODO tidy this messy file */
'use strict';
var gulp = require('gulp'),
source = require('vinyl-source-stream'),
sass = require('gulp-sass'),
jshint = require('gulp-jshint'),
del = require('del'),
livereload = require('gulp-livereload'),
watchify = require('watchify'),
browserify = require('browserify'),
gutil = require('gulp-util');
gulp.task('jshint', function() {
return gulp.src('./src/js/**/*.js')
// .pipe(plumber({
// errorHandler: onError
// }))
.pipe(jshint())
.pipe(jshint.reporter('default'));
// .pipe(notify({ message: 'JS Hinting task complete' }));
});
// mv 404 files to build etc
// mv index.html in build
// also move other static files
// gulp.task('move-hbs-views', function() {
// gulp.src('src/views/**/*').pipe(gulp.dest('build/views'));
// });
// Styles
gulp.task('sass', function () {
return gulp.src('./src/scss/main.scss')
.pipe(sass({
includePaths : ['_/sass/'],
outputStyle: 'compressed',
sourceComments: 'map'
}))
// .pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
.pipe(gulp.dest('build/css'));
// .pipe(rename({suffix: '.min'}))
// .pipe(minifycss())
// .pipe(gulp.dest('build/css'));
// .pipe(notify({ message: 'Styles task complete' }));
});
// Clean
gulp.task('clean', function(cb) {
del(['build/css', 'build/js', 'build/img', 'build/views'], cb);
});
gulp.task('socket.io-stream-client', function() {
// Move socket io stream client file into the build folder
gulp.src('src/js/socket.io-stream.js').pipe(gulp.dest('build/js'));
});
gulp.task('watch', ['sass', 'socket.io-stream-client'], function() {
// Watch .scss files
gulp.watch('src/**/*', ['sass']);
livereload.listen();
// Watch .js files
// gulp.watch('src/scripts/**/*.js', ['scripts']);
console.log(watchify.args);
// var bundler = watchify(browserify('./src/js/main.js', watchify.args));
var bundler = watchify(browserify('./src/js/main.js', { cache: {}, packageCache: {}, fullPaths: true, debug : true }));
bundler.on('update', rebundle);
function rebundle() {
return bundler.bundle()
// log errors if they happen
.on('error', gutil.log.bind(gutil, 'Browserify Error'))
.pipe(source('bundle.js'))
.pipe(gulp.dest('./build/js'))
// .pipe(notify({ message: 'browserify task complete' }))
.pipe(livereload());
}
return rebundle();
});
gulp.task('default', ['clean'], function() {
// gulp.start('move-hbs-views', 'sass');
gulp.start('sass');
});