-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGulpfile.js
executable file
·125 lines (106 loc) · 3.32 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
var gulp = require('gulp'),
concat = require('gulp-concat'),
sass = require('gulp-ruby-sass'),
uglify = require('gulp-uglifyjs'),
mincss = require('gulp-minify-css'),
clean = require('gulp-clean'),
runSequence = require('run-sequence'),
browserSync = require('browser-sync'),
reload = browserSync.reload,
watch = require('gulp-watch'),
plumber = require('gulp-plumber'),
jade = require('gulp-jade'),
gutil = require('gulp-util'),
/* utility vars */
is_production = false,
sass_style = 'expanded',
source_map = true,
paths = {
/* register 3rd party vendor script files */
'vendor_js':[
'bower_components/webcomponentsjs/webcomponents.js',
'bower_components/angular/angular.js',
'bower_components/angular-route/angular-route.js',
'bower_components/jquery/dist/jquery.js',
'bower_components/a11y_kit/dist/a11y_kit.js'
],
/* register custom literate coffeescript files */
'litcoffee':[
'src/coffeescript/app.litcoffee'
],
'vendor_templates':[
'bower_components/polymer/polymer.html',
'bower_components/slide-deck/a-slide-deck.html',
'bower_components/slide-deck/a-slide.html',
'bower_components/slide-deck/code-block.html',
'elements/flex-grid.html',
'elements/flex-line.html'
]
};
if (gulp.env.prod) {
is_production = true;
sass_style = 'compress';
source_map = false;
}
var onError = function (err) {
gutil.beep();
console.log(err);
};
var change_event = function(evt) {
gutil.log('File', gutil.colors.cyan(evt.path.replace(new RegExp('/.*(?=/' + basePaths.src + ')/'), '')), 'was', gutil.colors.magenta(evt.type));
};
gulp.task('templates', function() {
return gulp.src('src/jade/*.jade')
.pipe(plumber(onError))
.pipe(jade({pretty: true}))
.pipe(gulp.dest('build/'))
.pipe(reload({stream:true}));
});
gulp.task('copy', function() {
gulp.src('src/img/**/*')
.pipe(gulp.dest('build/img'));
gulp.src('bower_components/**/*')
.pipe(gulp.dest('build/bower_components'));
gulp.src('src/fonts/**')
.pipe(gulp.dest('build/fonts'));
gulp.src('src/elements/**')
.pipe(gulp.dest('build/elements'));
/*
gulp.src('src/json/**')
.pipe(gulp.dest('build/json'));
gulp.src('src/feed/**')
.pipe(gulp.dest('build/feed'));*/
gulp.src('src/js/vendor/**')
.pipe(gulp.dest('build/js/vendor'));
/*
gulp.src('src/index.html')
.pipe(gulp.dest('build/'));*/
gulp.src('src/css/**')
.pipe(gulp.dest('build/css'));
});
gulp.task('_build',['templates','copy']); //Because 'clean' is async runSequence forces sync
gulp.task('browser-sync', function() {
browserSync({
server: {
baseDir: "./build"
}
});
});
/* command line entry points */
gulp.task('build', function(cb) {
runSequence('_build',cb);
});
gulp.task('run', function(cb){
runSequence('build','browser-sync',cb);
gulp.watch('./src/css/**/*.css', ['copy']);
// gulp.watch('./src/sass/**/*.sass', ['sass']);
// gulp.watch('./src/sass/**/*.scss', ['sass']);
gulp.watch('./src/jade/**/*.jade', ['templates']);//.on('change', function (evt) {change_event(evt);});
// gulp.watch('./src/posts/**/*.md', ['markdown']);
// gulp.watch('./src/coffeescript/*.litcoffee', ['coffee']);
// gulp.watch('./src/js/vendor/*.js', ['vendor_js']);
// gulp.watch('./src/json/*.json', ['copy']);
// gulp.watch('./src/img/*.png', ['copy']);
// gulp.watch('./src/img/*.jpg', ['copy']);
// gulp.watch('./src/img/*.svg', ['copy']);
});