-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
48 lines (39 loc) · 1001 Bytes
/
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
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var sass = require('gulp-sass');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var livereload = require('gulp-livereload');
var pathsJs = [
'js/bonsai-app/*.js',
'js/bonsai-app/controllers/*.js',
'js/bonsai-app/services/*.js',
'bonsai.json'
];
var htmls = [
'index.html',
'partials/*.html'
]
// lints
gulp.task('lint', function() {
return gulp.src(pathsJs)
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
//minify js
gulp.task('scripts', function() {
return gulp.src(pathsJs)
.pipe(livereload());
});
// watch index.html without lint...
gulp.task('html', function() {
return gulp.src(htmls)
.pipe(livereload());
});
gulp.task('watchHTML', function() {
gulp.watch(htmls, ['html']);
});
gulp.task('watch', function() {
gulp.watch(pathsJs, ['lint', 'scripts', 'html']);
});
gulp.task('default', ['watch', 'watchHTML']);