-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
129 lines (102 loc) · 3.22 KB
/
gulpfile.js
File metadata and controls
129 lines (102 loc) · 3.22 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
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
126
127
128
129
var gulp = require('gulp');
var gutil = require('gulp-util');
var bower = require('bower');
var historyApiFallback = require('connect-history-api-fallback')
var browserSync = require('browser-sync').create();
var concat = require('gulp-concat');
var concatCSS = require('gulp-concat-css');
var injectVersion = require('gulp-inject-version');
var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
var paths = {
sass: ['./www/scss/*.scss', './www/app/**/*.scss', './scss/**/*.scss']
};
gulp.task('default', ['sass']);
gulp.task('sass', function(done) {
return gulp.src(paths.sass)
.pipe(sass())
.on('error', sass.logError)
.pipe(gulp.dest('./www/css/'))
.pipe(minifyCss({
keepSpecialComments: 0
}))
.pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest('./www/css/'))
.pipe(browserSync.stream())
// .on('end', done);
});
gulp.task('watch', ['sass'], function() {
gulp.watch(paths.sass, ['sass']);
});
gulp.task('install', ['git-check'], function() {
return bower.commands.install()
.on('log', function(data) {
gutil.log('bower', gutil.colors.cyan(data.id), data.message);
});
});
gulp.task('build', ['install','sass'], function(){
console.log('---- built successfully ---');
});
gulp.task('build-css', function(){
return gulp.src(paths.sass)
.pipe(sass())
.pipe(minifyCss({
keepSpecialComments: 0
}))
.pipe(concatCSS('css/bundle.min.css'))
.pipe(gulp.dest('www'));
})
gulp.task('git-check', function(done) {
if (!sh.which('git')) {
console.log(
' ' + gutil.colors.red('Git is not installed.'),
'\n Git, the version control system, is required to download Ionic.',
'\n Download git here:', gutil.colors.cyan('http://git-scm.com/downloads') + '.',
'\n Once git is installed, run \'' + gutil.colors.cyan('gulp install') + '\' again.'
);
process.exit(1);
}
done();
});
gulp.task('serve', ['sass'], function() {
browserSync.init({
server: "./www",
middleware: [historyApiFallback()]
});
gulp.watch("scss/*.scss", ['sass']);
gulp.watch("www/**/*.scss", ['sass']);
gulp.watch("www/**/*.html").on('change', browserSync.reload);
gulp.watch("www/**/*.js").on('change', browserSync.reload);
gulp.watch("www/**/*.css").on('change', browserSync.reload);
});
gulp.task('copy-www', function(){
sh.rm('-rf', 'out/Release');
sh.mkdir('-p', 'out/Release');
sh.cp('-R', 'www/', 'out/Release');
});
gulp.task('version-index', function(){
return gulp.src('out/Release/index.html')
.pipe(injectVersion({
replace: /%%VERSION%%/g
}))
.pipe(gulp.dest('out/Release'));
});
gulp.task('version-footer', function(){
return gulp.src('out/Release/app/components/footer/footer.html')
.pipe(injectVersion({
replace: /%%VERSION%%/g
}))
.pipe(gulp.dest('out/Release/app/components/footer/'));
});
gulp.task('deploy',['install'], function(){
gulp.start('build-css');
setTimeout(function(){
gulp.start('copy-www');
gulp.start('version-index');
gulp.start('version-footer');
}, 3000)
console.log('completed deploy process, copying to server...');
})
gulp.task('serve:before', ['sass', 'watch']);