-
Notifications
You must be signed in to change notification settings - Fork 458
/
gulpfile.js
executable file
·428 lines (346 loc) · 11 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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/* Utlimate Jay Mega Gulpfile */
/* global require:true, process:true */
/* jshint laxbreak:true */
(function() {
'use strict';
var pkg = require('./package.json'),
del = require('del'),
yargs = require('yargs'),
exec = require('exec'),
fs = require('fs'),
dateFormat = require('date-format'),
spawn = require('child_process').spawn,
gulp = require('gulp'),
plugins = require('gulp-load-plugins')();
var bumpVersion = yargs.argv.type || 'patch';
var settings = {
name: 'vegas',
banner: {
content: [
'/*!-----------------------------------------------------------------------------',
' * <%= pkg.description %>',
' * v<%= pkg.version %> - built <%= datetime %>',
' * Licensed under the MIT License.',
' * http://vegas.jaysalvat.com/',
' * ----------------------------------------------------------------------------',
' * Copyright (C) 2010-<%= year %> Jay Salvat',
' * http://jaysalvat.com/',
' * --------------------------------------------------------------------------*/',
''
].join('\n'),
vars: {
pkg: pkg,
datetime: dateFormat.asString('yyyy-MM-dd'),
year: dateFormat.asString('yyyy')
}
}
};
const getPackageJson = function() {
return JSON.parse(fs.readFileSync('./package.json'));
};
function clean(cb) {
return del([ './dist' ], cb);
}
exports.clean = clean;
function tmpClean(cb) {
return del([ './tmp' ], cb);
}
exports.tmpClean = tmpClean;
function tmpCreate(cb) {
return exec('mkdir -p ./tmp', cb);
}
exports.tmpCreate = tmpCreate;
function tmpCopy() {
return gulp.src('./dist/**/*')
.pipe(gulp.dest('./tmp'));
}
exports.tmpCopy = gulp.series(tmpCreate, tmpCopy);
function zip() {
const filename = settings.name + '.zip';
return gulp.src('./dist/**/*')
.pipe(plugins.zip(filename))
.pipe(gulp.dest('./tmp'));
}
exports.zip = gulp.series(tmpCreate, zip);
function failIfDirty(cb) {
return exec('git diff-index HEAD --', function(err, output) {
if (err) {
return cb(err);
}
if (output) {
return cb('Repository is dirty');
}
return cb();
});
}
exports.zip = failIfDirty;
function failIfNotMaster(cb) {
exec('git symbolic-ref -q HEAD', function(err, output) {
if (err) {
return cb(err);
}
if (!/refs\/heads\/master/.test(output)) {
return cb('Branch is not Master');
}
return cb();
});
}
exports.failIfNotMaster = failIfNotMaster;
function gitTag(cb) {
const message = 'v' + getPackageJson().version;
return exec('git tag ' + message, cb);
}
exports.gitTag = gitTag;
function gitAdd(cb) {
return exec('git add -A', cb);
}
exports.gitAdd = gitAdd;
function gitCommit(cb) {
const message = 'Build v' + getPackageJson().version;
return exec('git commit -m "' + message + '"', cb);
}
exports.gitCommit = gulp.series(gitAdd, gitCommit);
function gitPull(cb) {
return exec('git pull origin master', function(err, output, code) {
if (code !== 0) {
return cb(err + output);
}
return cb();
});
}
exports.gitPull = gitPull;
function gitPush(cb) {
return exec('git push origin master --tags', function(err, output, code) {
if (code !== 0) {
return cb(err + output);
}
return cb();
});
}
exports.gitCommit = gulp.series(gitAdd, gitCommit, gitPush);
function npmPublish(cb) {
exec('npm publish', function(err, output, code) {
if (code !== 0) {
return cb(err + output);
}
return cb();
});
}
exports.npmPublish = npmPublish;
function meta(cb) {
const metadata = {
date: dateFormat.asString('yyyy-MM-dd HH:MM'),
version: 'v' + getPackageJson().version
},
json = JSON.stringify(metadata, null, 4);
fs.writeFileSync('tmp/metadata.json', json);
fs.writeFileSync('tmp/metadata.js', '__metadata(' + json + ');');
return cb();
}
exports.npmPublish = gulp.series(tmpCreate, meta);
function bump() {
return gulp.src([ 'package.json', 'bower.json', 'component.json' ])
.pipe(plugins.bump(
/^[a-z]+$/.test(bumpVersion)
? { type: bumpVersion }
: { version: bumpVersion }
))
.pipe(gulp.dest('.'));
}
exports.npmPublish = npmPublish;
function year() {
return gulp.src([ './README.md' ])
.pipe(plugins.replace(/(Copyright )(\d{4})/g, '$1' + dateFormat.asString('yyyy')))
.pipe(gulp.dest('.'));
}
exports.year = year;
function lint() {
return gulp.src('./src/**.js')
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter('default'));
}
exports.lint = lint;
function copy() {
return gulp.src([ './src/**/*', '!./src/sass', '!./src/sass/**' ])
.pipe(gulp.dest('./dist'));
}
exports.copy = copy;
function uglify() {
return gulp.src('./dist/**/!(*.min.js).js')
.pipe(plugins.rename({ suffix: '.min' }))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.uglify({
compress: {
},
mangle: true,
output: {
comments: /^!/
}
}))
.on('error', function(err) { console.log(err) })
.pipe(plugins.sourcemaps.write('.'))
.pipe(gulp.dest('./dist/'));
}
exports.copy = copy;
function cssmin() {
return gulp.src('./dist/**/!(*.min.css).css')
.pipe(plugins.sourcemaps.init())
.pipe(plugins.rename({ suffix: '.min' }))
.pipe(plugins.cssmin())
.pipe(plugins.sourcemaps.write('.'))
.pipe(gulp.dest('./dist/'));
}
exports.cssmin = cssmin;
function sass() {
return gulp.src("./src/sass/vegas.sass")
// .pipe(plugins.sourcemaps.init())
.pipe(plugins.sass({
outputStyle: 'expanded',
indentWidth: 4
}).on('error', plugins.sass.logError))
.pipe(plugins.autoprefixer())
// .pipe(plugins.sourcemaps.write('.'))
.pipe(gulp.dest("./dist/"));
}
exports.sass = sass;
function header() {
settings.banner.vars.pkg = getPackageJson();
return gulp.src('./dist/*.js')
.pipe(plugins.header(settings.banner.content, settings.banner.vars ))
.pipe(gulp.dest('./dist/'));
}
exports.header = header;
function ghPages(cb) {
var version = getPackageJson().version;
exec([ 'git checkout gh-pages',
'rm -rf releases/' + version,
'mkdir -p releases/' + version,
'cp -r tmp/* releases/' + version,
'git add -A releases/' + version,
'rm -rf releases/latest',
'mkdir -p releases/latest',
'cp -r tmp/* releases/latest',
'git add -A releases/latest',
'git commit -m "Publish release v' + version + '."',
'git push origin gh-pages',
'git checkout -'
].join(' && '),
function(err, output, code) {
if (code !== 0) {
return cb(err + output);
}
return cb();
}
);
}
exports.ghPages = ghPages;
function changelog(cb) {
var filename = 'CHANGELOG.md',
editor = process.env.EDITOR || 'vim',
version = getPackageJson().version,
date = dateFormat.asString('yyyy-MM-dd'),
changelog = fs.readFileSync(filename).toString(),
lastDate = /\d{4}-\d{2}-\d{2}/.exec(changelog)[0];
exec('git log --since="' + lastDate + ' 00:00:00" --oneline --pretty=format:"%s"', function(err, stdout) {
if (err) {
return cb(err);
}
if (!stdout) {
return cb();
}
const updates = [
'### Vegas ' + version + ' ' + date,
'',
'* ' + stdout.replace(/\n/g, '\n* ')
].join('\n');
changelog = changelog.replace(/(## CHANGE LOG)/, '$1\n\n' + updates);
fs.writeFileSync(filename, changelog);
const vim = spawn(editor, [ filename, '-n', '+7' ], {
stdio: 'inherit'
});
vim.on('close', function() {
return cb();
});
});
}
exports.changelog = changelog;
function watch() {
return gulp.watch("./src/**/*", build);
}
exports.watch = watch;
exports.default = watch;
const build = gulp.series(
lint,
clean,
copy,
sass,
header,
cssmin,
uglify
);
exports.build = build;
const publish = gulp.series(
failIfNotMaster,
failIfDirty,
tmpCreate,
tmpCopy,
meta,
zip,
ghPages,
tmpClean
);
exports.publish = publish;
const release = gulp.series(
failIfNotMaster,
failIfDirty,
gitPull,
bump,
changelog,
year,
clean,
copy,
sass,
header,
uglify,
cssmin,
gitAdd,
gitCommit,
gitTag,
gitPush,
publish,
npmPublish
);
exports.release = release;
})();
/*
NPM Installation
----------------
npm install --save-dev del
npm install --save-dev yargs
npm install --save-dev exec
npm install --save-dev jshint
npm install --save-dev gulp
npm install --save-dev gulp-sass
npm install --save-dev gulp-load-plugins
npm install --save-dev gulp-bump
npm install --save-dev gulp-header
npm install --save-dev gulp-cssmin
npm install --save-dev gulp-autoprefixer
npm install --save-dev gulp-uglify
npm install --save-dev gulp-sourcemaps
npm install --save-dev gulp-jshint
npm install --save-dev gulp-util
npm install --save-dev gulp-zip
npm install --save-dev gulp-rename
npm install --save-dev gulp-replace
Gh-pages creation
-----------------
git checkout --orphan gh-pages
git rm -rf .
rm -fr
echo 'Welcome' > index.html
git add index.html
git commit -a -m 'First commit'
git push origin gh-pages
git checkout -
*/