-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
gulpfile.js
176 lines (158 loc) · 5.55 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
var gulp = require('gulp');
var gutil = require('gulp-util');
var bower = require('bower');
var concat = require('gulp-concat');
var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
var uglify = require('gulp-uglify');
var foreach = require('gulp-foreach');
var htmlmin = require('gulp-htmlmin');
var notify = require("gulp-notify");
var preen = require('preen');
var sourcemaps = require('gulp-sourcemaps');
var imagemin = require('gulp-imagemin');
var autoprefixer = require('gulp-autoprefixer');
var path = require('path');
var del = require('del');
var paths = {
sass: ['scss/**/*.scss'],
index: 'app/index.html',
scripts: ['app/js/app.js', 'app/js/**/*.js'],
styles: 'app/scss/**/*.*',
templates: 'app/templates/**/*.*',
images: 'app/img/**/*.*',
lib: 'www/lib/**/*.*',
//Destination folders
destImages: './www/img/',
destTemplates: './www/templates/'
};
gulp.task('serve:before', ['watch']);
gulp.task('default', ['sass', 'index', 'scripts', 'styles', 'templates', 'images', 'lib']);
gulp.task('serve', function(done){
sh.exec('ionic serve', done);
});
gulp.task('sass', function(done) {
gulp.src('./scss/ionic.app.scss')
.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/'))
.on('end', done);
});
gulp.task('index', function() {
return gulp.src(paths.index)
.pipe(gulp.dest("./www/"))
.pipe(notify({ message: 'Index built' }));
});
gulp.task('scripts', function() {
return gulp.src(paths.scripts)
.pipe(sourcemaps.init())
.pipe(concat("app.js"))
.pipe(sourcemaps.write())
.pipe(gulp.dest("./www/build/"))
.pipe(rename('app.min.js'))
.pipe(uglify())
.pipe(gulp.dest("./www/build/"))
.pipe(notify({ message: 'Scripts built' }));
});
gulp.task('styles', function() {
return gulp.src(paths.styles)
.pipe(sourcemaps.init())
.pipe(sass())
.pipe(autoprefixer('last 2 version'))
.pipe(concat('style.css'))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('./www/css/'))
.pipe(rename({ suffix: '.min' }))
.pipe(minifyCss())
.pipe(gulp.dest('./www/css/'))
.pipe(notify({ message: 'Styles built' }));
});
function MinifyTemplates(path, destPath) {
return gulp.src(path)
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest(destPath || paths.destTemplates));
}
gulp.task('templates', ['clean-templates'], function() {
return MinifyTemplates(paths.templates).on('end', function() {
gulp.src('').pipe(notify({ message: 'Templates built' }))
});
});
function MinifyImages(path, destPath) {
return gulp.src(path)
.pipe(imagemin({ optimizationLevel: 5 }))
.pipe(gulp.dest(destPath || paths.destImages));
}
gulp.task('images', ['clean-images'], function() {
return MinifyImages(paths.images).on('end', function() {
gulp.src('').pipe(notify({ message: 'Images built' }))
});
});
gulp.task('lib', function(done) {
//https://forum.ionicframework.com/t/how-to-manage-bower-overweight/17997/10?u=jdnichollsc
preen.preen({}, function() {
gulp.src('').pipe(notify({ message: 'Lib built' }));
done();
});
});
gulp.task('clean-images', function() {
return del(paths.destImages);
});
gulp.task('clean-templates', function() {
return del(paths.destTemplates);
});
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
gulp.watch(paths.index, ['index']);
gulp.watch(paths.scripts, ['scripts']);
gulp.watch(paths.styles, ['styles']);
gulp.watch(paths.templates, function(event){
var destPathFile = path.join('./www', path.relative(path.join(__dirname, './app'), event.path));
if(event.type === "deleted"){
del(destPathFile);
}else{
var pathFile = path.relative(__dirname, event.path);
var destPath = path.dirname(destPathFile);
MinifyTemplates(pathFile, destPath).on('end', function() {
gulp.src('').pipe(notify({ message: 'Template built' }))
});
}
});
gulp.watch(paths.images, function(event){
var destPathFile = path.join('./www', path.relative(path.join(__dirname, './app'), event.path));
if(event.type === "deleted"){
del(destPathFile);
}else{
var pathFile = path.relative(__dirname, event.path);
var destPath = path.dirname(destPathFile);
MinifyImages(pathFile, destPath).on('end', function() {
gulp.src('').pipe(notify({ message: 'Image built' }))
});
}
});
gulp.watch(paths.lib, ['lib']);
});
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('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();
});