-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
58 lines (50 loc) · 1.43 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
var gulp = require('gulp');
var del = require('del');
var template = require('gulp-template');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var uglify = require('gulp-uglify');
var jshint = require('gulp-jshint');
var mochaPhantomJS = require('gulp-mocha-phantomjs');
var pkg = require('./package.json');
gulp.task('clean', function () {
return del(['dist/*']);
});
gulp.task('build-css', ['clean'], function() {
return gulp.src('bootstrap-toc.css')
.pipe(template(pkg))
.pipe(gulp.dest('dist'))
.pipe(minifyCss({compatibility: 'ie8'}))
.pipe(rename({
extname: '.min.css'
}))
.pipe(gulp.dest('dist'));
});
gulp.task('build-js', ['clean'], function() {
return gulp.src('bootstrap-toc.js')
.pipe(template(pkg))
.pipe(gulp.dest('dist'))
.pipe(uglify({
preserveComments: 'license'
}))
.pipe(rename({
extname: '.min.js'
}))
.pipe(gulp.dest('dist'));
});
gulp.task('js-lint', function () {
return gulp.src('bootstrap-toc.js')
.pipe(jshint())
.pipe(jshint.reporter('default'))
.pipe(jshint.reporter('fail'));
});
gulp.task('test', function () {
return gulp.src('test/index.html')
.pipe(mochaPhantomJS());
});
gulp.task('watch', function() {
gulp.watch('bootstrap-toc.js', ['js-lint', 'test']);
gulp.watch('test/*', ['test']);
});
gulp.task('build', ['build-css', 'build-js']);
gulp.task('default', ['build', 'js-lint', 'test']);