-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
98 lines (94 loc) · 2.38 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
90
91
92
93
94
95
96
97
98
// gulp
var gulp = require('gulp');
// plugins
var connect = require('gulp-connect');
var jshint = require('gulp-jshint');
var uglify = require('gulp-uglify');
var minifyCSS = require('gulp-minify-css');
var clean = require('gulp-clean');
var runSequence = require('run-sequence');
var browserify = require('gulp-browserify');
var concat = require('gulp-concat');
// tasks
gulp.task('lint', function() {
gulp.src(['./app/**/*.js', '!./app/bower_components/**'])
.pipe(jshint())
.pipe(jshint.reporter('default'))
.pipe(jshint.reporter('fail'));
});
gulp.task('clean', function() {
gulp.src('./dist/*')
.pipe(clean({force: true}));
gulp.src('./app/js/bundled.js')
.pipe(clean({force: true}));
});
gulp.task('minify-css', function() {
var opts = {comments:true,spare:true};
gulp.src(['./app/**/*.css', '!./app/bower_components/**'])
.pipe(minifyCSS(opts))
.pipe(gulp.dest('./dist/'))
});
gulp.task('minify-js', function() {
gulp.src(['./app/**/*.js', '!./app/bower_components/**'])
.pipe(uglify({
// inSourceMap:
// outSourceMap: "app.js.map"
}))
.pipe(gulp.dest('./dist/'))
});
gulp.task('copy-bower-components', function () {
gulp.src('./app/bower_components/**')
.pipe(gulp.dest('dist/bower_components'));
});
gulp.task('copy-html-files', function () {
gulp.src('./app/**/*.html')
.pipe(gulp.dest('dist/'));
});
gulp.task('copy-img', function() {
gulp.src('./app/img/*')
.pipe(gulp.dest('dist/img/'));
});
gulp.task('connect', function () {
connect.server({
root: ['app'],
port: 8888,
debug: true
});
});
gulp.task('connectDist', function () {
connect.server({
root: ['dist'],
port: 9999
});
});
gulp.task('browserify', function() {
gulp.src(['app/js/main.js'])
.pipe(browserify({
insertGlobals: true,
debug: true
}))
.pipe(concat('bundled.js'))
.pipe(gulp.dest('./app/js'))
});
gulp.task('browserifyDist', function() {
gulp.src(['app/js/main.js'])
.pipe(browserify({
insertGlobals: true,
debug: true
}))
.pipe(concat('bundled.js'))
.pipe(gulp.dest('./dist/js'))
});
// default task
gulp.task('default', function() {
runSequence(
['clean'],
['lint', 'browserify', 'connect']
);
});
gulp.task('build', function() {
runSequence(
['clean'],
['lint', 'minify-css', 'browserifyDist', 'copy-html-files', 'copy-img', 'copy-bower-components', 'connectDist']
);
});