-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
37 lines (29 loc) · 818 Bytes
/
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
var gulp = require('gulp'),
stylus = require('gulp-stylus'),
autoprefixer = require('gulp-autoprefixer'),
concat = require('gulp-concat');
;
gulp.task('stylus', function () {
gulp.src('./_styl/global.styl')
.pipe(stylus())
.pipe(gulp.dest('./css/'));
});
gulp.task('scripts', function(){
return gulp.src('_scripts/*')
.pipe(concat('app.js'))
.pipe(gulp.dest('./js/'))
})
gulp.task('watch', function() {
gulp.watch('_styl/*', ['stylus']);
gulp.watch('_styl/**/*', ['stylus']);
gulp.watch('_scripts/*', ['scripts']);
});
gulp.task('autoprefix', function(){
return gulp.src('./css/*.css')
.pipe(autoprefixer({
browsers:['last 2 versions'],
cascade: false
}))
.pipe(gulp.dest('./dist/'));
})
gulp.task('default',['stylus','scripts','autoprefix','watch']);