-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
executable file
·149 lines (125 loc) · 3.76 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
var gulp = require('gulp');
var browserify = require('browserify');
var source = require('vinyl-source-stream');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var utilities = require('gulp-util');
var del = require('del');
var jshint = require('gulp-jshint');
var buildProduction = utilities.env.production;
var lib = require('bower-files')({
"overrides":{
"bootstrap" : {
"main": [
"less/bootstrap.less",
"dist/css/bootstrap.css",
"dist/js/bootstrap.js"
]
}
}
});
var browserSync = require('browser-sync').create();
var sass = require('gulp-sass');
var sourcemaps = require('gulp-sourcemaps');
var concatCss = require('gulp-concat-css');
var cleanCSS = require('gulp-clean-css');
gulp.task('bowerJS', function () {
return gulp.src(lib.ext('js').files)
.pipe(concat('vendor.min.js'))
.pipe(uglify())
.pipe(gulp.dest('./build/js'));
});
gulp.task('bowerCSS', function () {
return gulp.src(lib.ext('css').files)
.pipe(concat('vendor.css'))
.pipe(gulp.dest('./build/css'));
});
gulp.task('bower', ['bowerJS', 'bowerCSS']);
gulp.task('concatInterface', function() {
return gulp.src(['./js/*-interface.js'])
.pipe(concat('allConcat.js'))
.pipe(gulp.dest('./tmp'));
});
gulp.task('jsBrowserify', ['concatInterface'], function() {
return browserify({ entries: ['./tmp/allConcat.js'] })
.bundle()
.pipe(source('app.js'))
.pipe(gulp.dest('./build/js'));
});
gulp.task("minifyScripts", ["jsBrowserify"], function(){
return gulp.src("./build/js/app.js")
.pipe(uglify())
.pipe(gulp.dest("./build/js"));
});
// take all SASS from styles, build and move to tmp/css
gulp.task('buildSASS', function() {
return gulp.src(['styles/*.scss'])
.pipe(sourcemaps.init())
.pipe(sass())
.pipe(sourcemaps.write())
.pipe(gulp.dest('./tmp/css'));
});
// take all CSS from styles, concat and move to tmp/css
gulp.task('buildCSS', function() {
return gulp.src(['styles/*.css'])
.pipe(concatCss("basicstyles.css"))
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(gulp.dest('./tmp/css'));
});
// take all css files from inside tmp/css (regardless of made with SASS or plain CSS),
// and put htem in build/css to keep separate from vendor.css from bower.
gulp.task('concatenateAllStyles', function(){
return gulp.src(['tmp/css/*.css'])
.pipe(concatCss("finalstyles.css"))
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(gulp.dest('./build/css'));
});
gulp.task("clean", function(){
return del(['build/js', 'build/css', 'tmp']);
});
gulp.task('build', ['clean'], function(){
if (buildProduction) {
gulp.start('minifyScripts');
} else {
gulp.start('jsBrowserify');
}
gulp.start('bower');
gulp.start('styles');
});
gulp.task('serve', function() {
browserSync.init({
server: {
baseDir: "./",
index: "index.html"
}
});
gulp.watch(['js/*.js'], ['jsBuild']);
gulp.watch(['bower.json'], ['bowerBuild']);
gulp.watch(['*.html'], ['htmlBuild']); // html changes, reload.
gulp.watch(['styles/*'], ['styles']);
});
gulp.task('htmlBuild', function(){
browserSync.reload();
});
// uncomment this version for CSS only
gulp.task("pullStyles", ["buildCSS"], function(){
return gulp.start('concatenateAllStyles');
});
// uncomment this version for SASS and CSS
// gulp.task("pullStyles", ["buildCSS", "buildSASS"], function(){
// return gulp.start('concatenateAllStyles');
// });
gulp.task('styles', ['pullStyles'], function(){
browserSync.reload();
});
gulp.task('jsBuild', ['jsBrowserify', 'jshint'], function(){
browserSync.reload();
});
gulp.task('bowerBuild', ['bower'], function(){
browserSync.reload();
});
gulp.task('jshint', function(){
return gulp.src(['js/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});