forked from romannurik/AndroidAssetStudio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
executable file
·259 lines (233 loc) · 7.25 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// Include Gulp & Tools We'll Use
const gulp = require('gulp');
const $ = require('gulp-load-plugins')();
const del = require('del');
const fs = require('fs');
const buffer = require('vinyl-buffer');
const runSequence = require('run-sequence');
const browserSync = require('browser-sync');
const browserify = require('browserify');
const exclude = require('gulp-ignore').exclude;
const reload = browserSync.reload;
const merge = require('merge-stream');
const source = require('vinyl-source-stream');
const swig = require('swig');
const swigExtras = require('swig-extras');
const through = require('through2');
const url = require('url');
const yaml = require('js-yaml');
const path = require('path');
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'ios >= 7',
'android >= 4.4'
];
var DEV_MODE = false;
var BASE_HREF = DEV_MODE ? '/' : '/AndroidAssetStudio/';
function errorHandler(error) {
console.error(error.stack);
this.emit('end'); // http://stackoverflow.com/questions/23971388
}
// Lint JavaScript
gulp.task('scripts', function () {
return browserify('./app/scripts/app.js', {
debug: true, // debug generates sourcemap
basedir: '.',
paths: [
'./app/scripts/',
'./node_modules/'
]
})
.transform('babelify', {presets: ['es2015'], plugins: ['es6-promise']})
.transform('require-globify')
.bundle()
.on('error', errorHandler)
.pipe(source('app.js'))
.pipe(buffer())
.pipe(gulp.dest('.tmp/scripts'))
.pipe($.if(!DEV_MODE, $.uglify({
mangle:false
})))
.pipe(gulp.dest('dist/scripts'));
});
// Bower
gulp.task('bower', function(cb) {
return $.bower('.tmp/lib')
.pipe(exclude('!**/*.{js,css,map}'))
.pipe(exclude('**/test/**'))
.pipe(exclude('**/tests/**'))
.pipe(exclude('**/modules/**'))
.pipe(exclude('**/demos/**'))
.pipe(exclude('**/src/**'))
.pipe(gulp.dest('dist/lib'));
});
// Optimize Images
gulp.task('res', function () {
return gulp.src('app/res/**/*')
.pipe($.cache($.imagemin({
progressive: true,
interlaced: true
})))
.pipe(gulp.dest('dist/res'))
.pipe($.size({title: 'res'}));
});
// Copy All Files At The Root Level (app) and lib
gulp.task('copy', function () {
var s1 = gulp.src([
'app/*',
'!app/html'
], {
dot: true
}).pipe(gulp.dest('dist'))
.pipe($.size({title: 'copy'}));
var s2 = gulp.src('older-version/**/*', {dot: true})
.pipe(gulp.dest('dist/older-version'))
.pipe($.size({title: 'copy'}));
return merge(s1, s2);
});
// Compile and Automatically Prefix Stylesheets
gulp.task('styles', function () {
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src('app/styles/app.scss')
.pipe($.changed('styles', {extension: '.scss'}))
.pipe($.sassGlob())
.pipe($.sass({
style: 'expanded',
precision: 10,
quiet: true
}).on('error', errorHandler))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
.pipe(gulp.dest('.tmp/styles'))
// Concatenate And Minify Styles
.pipe($.if(!DEV_MODE, $.if('*.css', $.csso())))
.pipe(gulp.dest('dist/styles'))
.pipe($.size({title: 'styles'}));
});
gulp.task('html', () => {
let pages = [];
return gulp.src([
'app/html/**/*.html',
'!app/html/**/_*.html'
])
// Extract frontmatter
.pipe($.frontMatter({
property: 'frontMatter',
remove: true
}).on('error', errorHandler))
// Start populating context data for the file, globalData, followed by file's frontmatter
.pipe($.tap(function(file, t) {
file.contextData = Object.assign({}, file.frontMatter);
}))
// Populate the global pages collection
// Wait for all files first (to collect all front matter)
.pipe($.util.buffer())
.pipe(through.obj(function(filesArray, enc, callback) {
var me = this;
filesArray.forEach(function(file) {
var pageInfo = {path: file.path, data: file.frontMatter || {}};
pages.push(pageInfo);
});
// Re-emit each file into the stream
filesArray.forEach(function(file) {
me.push(file);
});
callback();
}))
.pipe($.tap(function(file, t) {
// Finally, add pages array to collection
file.contextData = Object.assign(file.contextData, {all_pages: pages});
}))
// Run everything through swig templates
.pipe($.swig({
setup: function(sw) {
swigExtras.useTag(sw, 'markdown');
swigExtras.useFilter(sw, 'markdown');
swigExtras.useFilter(sw, 'trim');
},
data: function(file) {
return file.contextData;
},
defaults: {
cache: false
}
}).on('error', errorHandler))
// Concatenate And Minify JavaScript
.pipe($.if('*.js', $.uglify({preserveComments: 'some'})))
// Concatenate And Minify Styles
// In case you are still using useref build blocks
.pipe($.if('*.css', $.csso()))
// Minify Any HTML
.pipe($.replace(/%%BASE_HREF%%/g, BASE_HREF))
.pipe(gulp.dest('.tmp'))
.pipe($.if('*.html', $.minifyHtml()))
// Output Files
.pipe(gulp.dest('dist'));
});
// Clean Output Directory
gulp.task('clean', function(cb) {
del.sync(['.tmp', 'dist']);
$.cache.clearAll();
cb();
});
// Watch Files For Changes & Reload
gulp.task('serve', ['styles', 'html', 'scripts', 'bower'], function () {
DEV_MODE = true;
browserSync({
notify: false,
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: {
baseDir: ['.tmp', 'app']
}
});
gulp.watch(['app/html/**/*.html'], ['html', reload]);
gulp.watch(['app/**/*.{scss,css}'], ['styles', reload]);
gulp.watch(['app/**/*.js'], ['scripts', reload]);
gulp.watch(['app/res/**/*'], reload);
});
// Build and serve the output from the dist build
gulp.task('serve:dist', ['default'], function () {
browserSync({
notify: false,
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: 'dist'
});
});
// Build Production Files, the Default Task
gulp.task('default', ['clean'], function (cb) {
runSequence('styles',
['scripts', 'bower', 'html', 'res', 'copy'],
cb);
});
// Deploy to GitHub pages
gulp.task('deploy', function() {
return gulp.src('dist/**/*', {dot: true})
.pipe($.ghPages());
});
// Load custom tasks from the `tasks` directory
try { require('require-dir')('tasks'); } catch (err) {}