-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
98 lines (83 loc) · 2.47 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
var gulp = require('gulp');
var path = require('path');
var del = require('del');
var $ = require('gulp-load-plugins')({
pattern: '*',
});
var environment = $.util.env.type || 'development';
var isProduction = environment === 'production';
var webpackConfig = require('./webpack.config.js')[environment];
var port = $.util.env.port || 3000;
var src = 'src/';
var dist = 'dist/';
console.log( $.util.env )
var autoprefixerBrowsers = [
'ie >= 9',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 6',
'opera >= 23',
'ios >= 6',
'android >= 4.4',
'bb >= 10'
];
gulp.task('scripts', ['lint'], function() {
return gulp.src(webpackConfig.entry)
.pipe($.webpackStream(webpackConfig))
.pipe(isProduction ? $.uglifyjs() : $.util.noop())
.pipe(gulp.dest(dist + 'js/'))
.pipe($.size({ title : 'js' }))
.pipe($.connect.reload());
});
gulp.task('html', function() {
return gulp.src(src + 'index.html')
.pipe(gulp.dest(dist))
.pipe($.size({ title : 'html' }))
.pipe($.connect.reload());
});
gulp.task('styles',function(cb) {
return gulp.src( [ src + 'styles/normalize.min.css', src + 'styles/main.scss' ] )
.pipe($.sass().on('error', $.sass.logError))
.pipe($.autoprefixer({browsers: autoprefixerBrowsers}))
.pipe( $.concat('main.css') )
.pipe( $.minifyCss() )
.pipe(gulp.dest( dist + 'css/') )
.pipe($.size({ title : 'css' }))
.pipe($.connect.reload());
});
gulp.task('serve', function() {
$.connect.server({
root: dist,
port: port,
livereload: {
port: 35728
}
});
// gulp.src(__filename)
// .pipe($.open({uri: 'http://localhost:'+ port }));
});
gulp.task('images', function(cb) {
return gulp.src(src + 'images/**/*')
.pipe($.size({ title : 'images' }))
.pipe(gulp.dest(dist + 'images/'));
});
gulp.task('watch', function() {
gulp.watch(src + 'styles/*.scss', ['styles', 'images']);
gulp.watch(src + 'index.html', ['html']);
gulp.watch([src + 'app/**/*.js', src + 'app/**/*.hbs'], ['scripts']);
});
gulp.task('clean', function(cb) {
del([dist], cb);
});
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
.pipe($.jshint())
.pipe($.jshint.reporter('default'));
});
// by default build project and then watch files in order to trigger livereload
gulp.task('default', ['build', 'serve', 'watch']);
// waits until clean is finished then builds the project
gulp.task('build', ['clean'], function(){
gulp.start(['images', 'html','scripts','styles']);
});