-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·182 lines (155 loc) · 4.72 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
const gulp = require('gulp');
const gulpLoadPlugins = require('gulp-load-plugins');
const $ = gulpLoadPlugins();
const browserify = require('browserify');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
// 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 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 buildProduction = utilities.env.production;
const reload = browserSync.reload;
let dev = true;
// Moves HTML files when building a distribution
gulp.task('html', () => {
return gulp.src('app/*.html')
.pipe($.useref({searchPath: ['.tmp', 'app', '.']}))
.pipe($.if(/\.js$/, $.uglify({compress: {drop_console: true}})))
.pipe($.if(/\.css$/, $.cssnano({safe: true, autoprefixer: false})))
.pipe(gulp.dest('dist'));
});
// Converts node.js code, so it'll work in the browser
gulp.task('jsBrowserify', ['concatInterface'], function() {
return browserify({ entries: ['./tmp/allConcat.js'] })
.bundle()
.pipe(source('app.js'))
.pipe(gulp.dest('./tmp/scripts'));
});
// Converts node.js code, so it'll work in the browser
gulp.task('proJsBrowserify', ['concatInterface'], function() {
return browserify({ entries: ['./tmp/allConcat.js'] })
.bundle()
.pipe(source('app.js'))
.pipe(buffer()) // <----- convert from streaming to buffered vinyl file object
.pipe(uglify()) // gulp-uglify, still not working :(
.pipe(gulp.dest('./dist/scripts'));
});
// Combines all user interface JS files into one file.
gulp.task('concatInterface', function() {
return gulp.src(['./app/scripts/*-interface.js'])
.pipe($.concat('allConcat.js'))
.pipe(gulp.dest('./tmp'));
});
// Minifies the scripts
// gulp.task("productionScripts", ["jsBrowserify"], function(){
// return gulp.src("./tmp/scripts/app.js")
// .pipe(buffer()) // <----- needed
// .pipe($.uglify())
// .pipe(gulp.dest("./dist/scripts"));
// });
// Builds a working web app, in the Dist folder.
gulp.task("build", ['clean'], function(){
if (buildProduction) {
gulp.start('productionCssBuild');
} else {
gulp.start('jsBrowserify');
gulp.start('cssBuild');
}
gulp.start('bower');
gulp.start('html');
});
// Delete's the distribution and tmp folders
gulp.task("clean", function(){
return del(['dist', 'tmp']);
});
// Checks the JavaScript code for errors
gulp.task('lint', function(){
return gulp.src(['js/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
// tested ok
gulp.task('bowerJS', function () {
return gulp.src(lib.ext('js').files)
.pipe($.concat('vendor.min.js'))
.pipe($.uglify())
.pipe(gulp.dest('./tmp/scripts'))
.pipe(gulp.dest('./dist/scripts'));
});
// tested ok
gulp.task('bowerCSS', function () {
return gulp.src(lib.ext('css').files)
.pipe($.concat('vendor.css'))
.pipe(gulp.dest('./tmp/styles'))
.pipe(gulp.dest('./dist/styles'));
});
// tested ok
gulp.task('bower', ['bowerJS', 'bowerCSS']);
gulp.task('serve', ['jsBuild', 'bower', 'cssBuild', 'html'], function() {
browserSync.init({
server: {
baseDir: ['tmp', 'app'],
index: "index.html"
}
});
gulp.watch([
'app/*.html',
'app/images/**/*',
'tmp/fonts/**/*'
]).on('change', reload);
gulp.watch(['app/scripts/*.js'], ['jsBuild']);
gulp.watch(['bower.json'], ['bowerBuild']);
gulp.watch(['*.html'], ['htmlBuild']);
gulp.watch(["app/styles/*.scss"], ['cssBuild']);
});
gulp.task('serve:dist', ['jsBuild', 'bower', 'productionCssBuild', 'html'], function() {
browserSync.init({
server: {
baseDir: ['tmp', 'app'],
index: "index.html"
}
});
});
gulp.task('jsBuild', ['jsBrowserify', 'lint', 'bower'], function(){
browserSync.reload();
});
gulp.task('bowerBuild', ['bower'], function(){
browserSync.reload();
});
gulp.task('htmlBuild', function() {
browserSync.reload();
});
// Compile the CSS for development
gulp.task('cssBuild', function() {
return gulp.src(['app/styles/*.scss'])
.pipe(sourcemaps.init())
.pipe(sass())
.pipe(sourcemaps.write())
.pipe(gulp.dest('./tmp/styles'))
.pipe(browserSync.stream());
});
// Compile the CSS for distribution
gulp.task('productionCssBuild', function() {
return gulp.src(['app/styles/*.scss'])
.pipe(sourcemaps.init())
.pipe(sass())
.pipe(sourcemaps.write())
.pipe(gulp.dest('./dist/styles'))
.pipe(browserSync.stream());
});