-
Notifications
You must be signed in to change notification settings - Fork 7
/
gulpfile.js
105 lines (76 loc) · 2.56 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
'use strict';
// Require Gulp
var gulp = require('gulp');
// Load Gulp plugins
var plugins = require('gulp-load-plugins')();
var chalk = require('chalk');
// Config
var basePath = 'src';
var cargobay = {
scss : basePath + '/**/*/styles/scss/**/*.scss',
js : [basePath + '/**/*/js/**/*.js', '!' + basePath + '/**/*/js/**/*.min.js'] // ! in front of a path excludes that path/those files. This is to prevent double minification.
};
// Styles
gulp.task('styles', function() {
return gulp.src(cargobay.scss)
// Scss -> Css
.pipe(plugins.rubySass())
.on('error', function (err) { console.log(err.message); })
// Combine Media Queries
.pipe(plugins.combineMediaQueries())
// Prefix where needed
.pipe(plugins.autoprefixer('last 1 version'))
// Use rename function to correctly place the dest path.
.pipe(plugins.rename(function(path){
path.dirname += '/../css';
}))
// Write to output dest
.pipe(gulp.dest('./src/')) // Because of rename dest will be: './src/**/*/styles/css/**/*.css'
// Rename the file again for the minified version of the css
.pipe(plugins.rename(function(path){
path.basename += '.min';
}))
// Minify output
.pipe(plugins.minifyCss())
// Write to output dest
.pipe(gulp.dest('./src/')) // Because of rename dest will be: './src/**/*/styles/css/**/*.min.css'
// Show total size of css
.pipe(plugins.size({
title: 'css'
}));
});
// Scripts
gulp.task('scripts', function () {
return gulp.src(cargobay.js)
// JsHint
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter(require('jshint-stylish')))
// Rename file befoure uglify
.pipe(plugins.rename(function(path){
path.basename += '.min';
}))
// Uglify
.pipe(plugins.uglify())
// Write to output dest
.pipe(gulp.dest('./src/')) // Because of rename, the dest will be ./src/**/*/js/**/*.min.js
// Show total size of js
.pipe(plugins.size({
title: 'js'
}));
});
// Watch
gulp.task('watch', function () {
// Styles
gulp.watch(cargobay.scss, ['styles']);
// Scripts
gulp.watch(cargobay.js, ['scripts']);
console.log(chalk.green('Build.complete!'));
});
// Build
gulp.task('build', ['styles', 'scripts'], function(){
console.log(chalk.green('Build complete!'));
});
// Default
gulp.task('default', ['build'], function () {
gulp.start('watch');
});