-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.babel.js
More file actions
executable file
·86 lines (75 loc) · 2.11 KB
/
gulpfile.babel.js
File metadata and controls
executable file
·86 lines (75 loc) · 2.11 KB
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
'use strict';
import gulp from 'gulp';
import path from 'path';
import gulpLoadPlugins from 'gulp-load-plugins';
import pjson from './package.json';
import minimist from 'minimist';
import wrench from 'wrench';
import spritesmith from 'gulp.spritesmith';
import browserSyncLib from 'browser-sync';
// Load all gulp plugins based on their names
// EX: gulp-copy -> copy
const plugins = gulpLoadPlugins();
// Create karma server
const KarmaServer = require('karma').Server;
let config = pjson.config;
let args = minimist(process.argv.slice(2));
let dirs = config.directories;
let taskTarget = args.production ? dirs.destination : dirs.temporary;
// Create a new browserSync instance
let browserSync = browserSyncLib.create();
// This will grab all js in the `gulp` directory
// in order to load all gulp tasks
wrench.readdirSyncRecursive('./gulp').filter((file) => {
return (/\.(js)$/i).test(file);
}).map(function(file) {
require('./gulp/' + file)(gulp, plugins, args, config, taskTarget, browserSync);
});
// Default task
gulp.task('default', ['clean'], () => {
gulp.start('build');
});
// Build production-ready code
gulp.task('build', [
'copy',
'imagemin',
'jade',
'stylus',
'browserify'
]);
// Server tasks with watch
gulp.task('serve', [
'imagemin',
'copy',
'stylus',
'jade',
'browserify',
'browserSync',
'watch'
]);
// generate sprite.png and _sprite.scss
gulp.task('sprite', function() {
var spriteData =
gulp.src('./src/_images/*.png')
.pipe(spritesmith({
imgName: 'sprite.png',
cssName: 'sprite.styl',
cssFormat: 'stylus',
algorithm: 'top-down',
algorithmOpts: {sort: false},
cssTemplate: 'stylus.template.mustache',
cssVarMap: function(sprite) {
sprite.name = 's-' + sprite.name
}
}));
spriteData.img.pipe(gulp.dest('./src/_images/anim/'));
spriteData.css.pipe(gulp.dest('./src/_styles/sprites/'));
});
// Testing
gulp.task('test', ['eslint'], (done) => {
new KarmaServer({
configFile: path.join(__dirname, '/karma.conf.js'),
singleRun: !args.watch,
autoWatch: args.watch
}, done).start();
});