This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
243 lines (211 loc) · 5.83 KB
/
gulpfile.babel.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
'use strict';
/*
* Dependencies
*/
import fs from 'fs';
import gulp from 'gulp';
import plumber from 'gulp-plumber';
import notify from 'gulp-notify';
import babel from 'gulp-babel';
import sass from 'gulp-sass';
import watch from 'gulp-watch';
import browserSync from 'browser-sync';
import rename from 'gulp-rename';
import sourcemaps from 'gulp-sourcemaps';
import concat from 'gulp-concat';
import uglify from 'gulp-uglify';
import cleanCSS from 'gulp-clean-css';
import autoprefixer from 'gulp-autoprefixer';
import runSequence from 'run-sequence';
import clean from 'gulp-clean';
import hb from 'gulp-hb';
import webpack from 'webpack-stream';
import jasmine from 'gulp-jasmine';
/*
* Configuration Options
*/
const config = {
// General
'projectTitle': 'CAS-FEE-NOTES-APP',
'basePath': './', // Base path (relative from gulpfile.babel.js)
'srcPath': './src/', // Src path (relative from gulpfile.babel.js)
'distPath': './dist/', // Dist path (relative from gulpfile.babel.js)
'serverPath': './dist/', // Server path for local on-demand server (relative from gulpfile.babel.js)
// JS
'jsFiles': [
'src/js/app.js',
],
'jsDistPath': 'dist/js/',
'jsDistFileName': 'all.js',
'jsDistFileNameMin': 'all.min.js',
// SASS/SCSS/CSS
'themes': fs.readdirSync('src/scss/themes'),
"themesPath": 'src/scss/themes/',
"scssSrc": 'styles.scss',
'cssDistPath': 'dist/css/',
'cssDistFileName': 'styles.css',
'cssDistFileNameMin': 'styles.min.css',
// Partials
"partialsSrc": 'src/*.html',
"partials": './src/partials/**/*.hbs',
// Templates
"templatesSrc": './src/templates/**/*.hbs',
// Files
"filesSrc": ['src/.htpasswd', 'src/.htaccess', 'src/templates/**'],
'filesDistPath': 'dist/',
// Fonts
'fontsSrcPath': [
'./node_modules/font-awesome/fonts/*.*'
],
'fontsDistPath': 'dist/fonts/',
// Images
"imagesSrc" : 'src/images/**/*',
'imagesDistPath': 'dist/images/',
// Clean
'cleanStuff': [
'dist'
],
// Jasmine Testing
'specs': 'spec/**/*[sS]pec.js'
};
/*
* Custom Error Logging
*/
function logError(error) {
notify.onError({
title: "Gulp Error",
message: "<%= error.message %>"
})(error);
this.emit('end'); // emit the end event, to properly end the task
}
/*
* Gulp Tasks
*/
gulp.task('browser-sync', () => {
return browserSync.init({
logLevel: 'info',
open: true,
notify: true, // browser popover notifications
server: {
baseDir: config.serverPath
}
});
});
gulp.task('sass', () => {
config.themes.map((theme) => {
let themeDistPath = config.cssDistPath + '/' + theme;
gulp.src(config.themesPath + theme + '/' + config.scssSrc)
.pipe(plumber({errorHandler: logError}))
.pipe(sass())
.pipe(autoprefixer({
browsers: ['last 3 versions'],
}))
.pipe(gulp.dest(themeDistPath)) // Write out un-minified version of the CSS
.pipe(sourcemaps.init())
.pipe(cleanCSS())
.pipe(rename(config.cssDistFileNameMin))
.pipe(sourcemaps.write(".")) // Write out sourcemap files for browser debugging
.pipe(gulp.dest(themeDistPath)) // Write out minified version of the CSS
.pipe(browserSync.stream({match: '**/*.css'}));
});
});
gulp.task("images", () => {
return gulp.src(config.imagesSrc)
.pipe(plumber({errorHandler: logError}))
.pipe(gulp.dest(config.imagesDistPath));
});
gulp.task('clean', () => {
return gulp.src(config.cleanStuff, {read: false})
.pipe(plumber({errorHandler: logError}))
.pipe(clean({
force: true
}));
});
gulp.task("files", () => {
gulp.src(config.filesSrc, { base: './src/' })
.pipe(plumber({errorHandler: logError}))
.pipe(gulp.dest(config.filesDistPath));
});
gulp.task("fonts", function() {
return gulp.src(config.fontsSrcPath)
.pipe(plumber({errorHandler: logError}))
.pipe(gulp.dest(config.fontsDistPath));
});
gulp.task("partials", function() {
gulp.src(config.partialsSrc)
.pipe(plumber({errorHandler: logError}))
.pipe(hb({
partials: config.partials,
data: config.partialsData,
helpers: {
ifvalue: function (conditional, options) {
if (conditional == options.hash.equals) {
return options.fn(this);
} else {
return options.inverse(this);
}
}
}
}))
.pipe(gulp.dest("./dist"));
});
gulp.task("js", () => {
return gulp.src(config.jsFiles)
.pipe(plumber({errorHandler: logError}))
.pipe(webpack({
resolve:
{
alias: {
'handlebars' : 'handlebars/dist/handlebars.js'
}
}
}))
.pipe(babel({
presets: ['env']
}))
.pipe(concat(config.jsDistFileName))
.pipe(gulp.dest(config.jsDistPath))
.pipe(sourcemaps.init())
.pipe(uglify({
compress: {
drop_console: false
}
}))
.pipe(rename(config.jsDistFileNameMin))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(config.jsDistPath))
.pipe(browserSync.stream({match: '**/*.js'}));
});
gulp.task('test', () =>
gulp.src(config.specs)
.pipe(plumber({errorHandler: logError}))
.pipe(jasmine({
verbose: true
}))
);
gulp.task('watch', ['browser-sync'], () => {
gulp.watch([
config.srcPath + 'scss/**/*.scss',
], ['sass']);
gulp.watch([
config.srcPath + 'js/**/*.js'
], ['js']);
gulp.watch([
config.srcPath + 'images/**/*'
], ['images']);
gulp.watch([
config.partialsSrc + '**/*.{html,hbs}'
], ['partials']).on('change', () => {
setTimeout(browserSync.reload, 1000);
});
gulp.watch([
config.templatesSrc
], ['files']).on('change', () => {
setTimeout(browserSync.reload, 1000);
});
});
/*
* Build Tasks
*/
gulp.task('default', (callback) => runSequence('build', 'watch', callback));
gulp.task('build', (callback) => runSequence('clean', ['partials', 'files', 'fonts', 'images', 'sass', 'js'], callback));