-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
gulpfile.js
219 lines (197 loc) · 6.74 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
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 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 jshint = require('gulp-jshint');
var path = require('path');
var del = require('del');
var pump = require('pump');
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('ionic:watch: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(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest("./www/"))
.pipe(notify({ message: 'Index built' }));
});
gulp.task('scripts', function (done) {
pump([
gulp.src(paths.scripts),
jshint(),
jshint.reporter('default', { verbose: true }),
//jshint.reporter('fail'), //Fail if jshint show errors in console
sourcemaps.init(),
concat("app.js"),
sourcemaps.write(),
gulp.dest("./www/build/"),
rename('app.min.js'),
uglify(),
gulp.dest("./www/build/"),
notify({ message: 'Scripts built' })
],
done
);
});
gulp.task('styles', function () {
return gulp.src(paths.styles)
.pipe(sourcemaps.init())
.pipe(sass())
.on('error', sass.logError)
.pipe(autoprefixer({
browsers: ['last 2 versions'],
cascade: false
}))
.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 (done) {
MinifyTemplates(paths.templates).on('end', function () {
gulp.src('').pipe(notify({ message: 'Templates built' }));
done();
});
});
function MinifyImages(path, destPath) {
return gulp.src(path)
.pipe(imagemin({ optimizationLevel: 5 }))
.pipe(gulp.dest(destPath || paths.destImages));
}
gulp.task('images', ['clean-images'], function (done) {
MinifyImages(paths.images).on('end', function () {
gulp.src('').pipe(notify({ message: 'Images built' }));
done();
});
});
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();
});
/* GitHub Page - http(s)://<username>.github.io/<projectname>
TODO: Execute the following steps if you don't want to publish your code to GitHub Pages like a demo.
- Uninstall the gulp plugins from package.json:
npm uninstall gulp-gh-pages --save-dev
npm uninstall merge2 --save-dev
- Remove the folder './gh-pages'
- Remove the code below
*/
var ghPages = require('gulp-gh-pages');
var merge2 = require('merge2');
gulp.task('deploy-files', function () {
var sourcePath = [
'./www/**/*',
'!./www/pre.db'
];
return merge2(
gulp.src('./gh-pages/**/*'),
gulp.src(sourcePath, { base: './' })
)
.pipe(ghPages());
});
gulp.task('deploy', ['deploy-files'], function () {
return gulp.src('').pipe(notify({ message: 'GitHub Page updated' }));
});