forked from bitpay/bitcore-build
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
388 lines (325 loc) · 10.3 KB
/
index.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
/**
* @file gulpfile.js
*
* Defines tasks that can be run on gulp.
*
* Summary: <ul>
* <li> `test` - runs all the tests on node and the browser (mocha and karma)
* <ul>
* <li> `test:node`
* <li> `test:node:nofail` - internally used for watching (due to bug on gulp-mocha)
* <li> `test:browser`
* </ul>`
* <li> `watch:test` - watch for file changes and run tests
* <ul>
* <li> `watch:test:node`
* <li> `watch:test:browser`
* </ul>`
* <li> `browser` - generate files needed for browser (browserify)
* <ul>
* <li> `browser:uncompressed` - build uncomprssed browser bundle (`bitcore-*.js`)
* <li> `browser:compressed` - build compressed browser bundle (`bitcore-*.min.js`)
* <li> `browser:maketests` - build `tests.js`, needed for testing without karma
* </ul>`
* <li> `lint` - run `jshint`
* <li> `coverage` - run `istanbul` with mocha to generate a report of test coverage
* <li> `coveralls` - updates coveralls info
* <li> `release` - automates release process (only for maintainers)
* </ul>
*/
'use strict';
var gulp = require('gulp');
var coveralls = require('gulp-coveralls');
var gutil = require('gulp-util');
var jshint = require('gulp-jshint');
var mocha = require('gulp-mocha');
var rename = require('gulp-rename');
var runsequence = require('run-sequence');
runsequence.use(gulp);
var shell = require('gulp-shell');
var uglify = require('gulp-uglify');
var bump = require('gulp-bump');
var git = require('gulp-git');
var fs = require('fs');
function ignoreerror() {
/* jshint ignore:start */ // using `this` in this context is weird
this.emit('end');
/* jshint ignore:end */
}
function startGulp(name, opts) {
opts = opts || {};
var browser = !opts.skipBrowser;
var fullname = name ? 'bitcore-' + name : 'bitcore';
var files = ['lib/**/*.js'];
var tests = ['test/**/*.js'];
var alljs = files.concat(tests);
var buildPath = './node_modules/bitcore-build-zclassic/';
var buildModulesPath = buildPath + 'node_modules/';
var buildBinPath = buildPath + 'node_modules/.bin/';
var browserifyPath = buildBinPath + 'browserify';
var karmaPath = buildBinPath + 'karma';
var platoPath = buildBinPath + 'plato';
var istanbulPath = buildBinPath + 'istanbul';
var mochaPath = buildBinPath + '_mocha';
// newer version of node? binaries are in lower level of node_module path
if (!fs.existsSync(browserifyPath)) {
browserifyPath = './node_modules/.bin/browserify';
}
if (!fs.existsSync(karmaPath)) {
karmaPath = './node_modules/.bin/karma';
}
if (!fs.existsSync(istanbulPath)) {
istanbulPath = './node_modules/.bin/istanbul';
}
if (!fs.existsSync(platoPath)) {
platoPath = './node_modules/.bin/plato';
}
if (!fs.existsSync(mochaPath)) {
mochaPath = './node_modules/.bin/_mocha';
}
/**
* testing
*/
var testmocha = function() {
return gulp.src(tests).pipe(mocha({
reporter: 'spec'
}));
};
var testkarma = shell.task([
karmaPath + ' start ' + buildPath + 'karma.conf.js'
]);
gulp.task('test:node', testmocha);
gulp.task('test:node:nofail', function() {
return testmocha().on('error', ignoreerror);
});
gulp.task('test:browser', ['browser:uncompressed', 'browser:maketests'], testkarma);
if (browser) {
gulp.task('test', function(callback) {
runsequence(['test:node'], ['test:browser'], callback);
});
} else {
gulp.task('test', ['test:node']);
}
gulp.task('noop', function() {});
/**
* file generation
*/
if (browser) {
var browserifyCommand;
if (name !== 'lib') {
browserifyCommand = browserifyPath + ' --require ./index.js:' + fullname + ' --external bitcore-lib-zclassic -o ' + fullname + '.js';
} else {
browserifyCommand = browserifyPath + ' --require ./index.js:bitcore-lib-zclassic -o bitcore-lib-zclassic.js';
}
gulp.task('browser:uncompressed', shell.task([
browserifyCommand
]));
gulp.task('browser:compressed', ['browser:uncompressed'], function() {
return gulp.src(fullname + '.js')
.pipe(uglify({
mangle: true,
compress: true
}))
.pipe(rename(fullname + '.min.js'))
.pipe(gulp.dest('.'))
.on('error', gutil.log);
});
gulp.task('browser:maketests', shell.task([
'find test/ -type f -name "*.js" | xargs ' + browserifyPath + ' -t brfs -o tests.js'
]));
gulp.task('browser', function(callback) {
runsequence(['browser:compressed'], callback);
});
}
/**
* code quality and documentation
*/
gulp.task('lint', function() {
return gulp.src(alljs)
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
gulp.task('plato', shell.task([platoPath + ' -d report -r -l .jshintrc -t ' + fullname + ' lib']));
gulp.task('coverage', shell.task([istanbulPath + ' cover ' + mochaPath + ' -- --recursive']));
gulp.task('coveralls', ['coverage'], function() {
gulp.src('coverage/lcov.info').pipe(coveralls());
});
/**
* watch tasks
*/
gulp.task('watch:test', function() {
// todo: only run tests that are linked to file changes by doing
// something smart like reading through the require statements
return gulp.watch(alljs, ['test']);
});
gulp.task('watch:test:node', function() {
// todo: only run tests that are linked to file changes by doing
// something smart like reading through the require statements
return gulp.watch(alljs, ['test:node']);
});
if (browser) {
gulp.task('watch:test:browser', function() {
// todo: only run tests that are linked to file changes by doing
// something smart like reading through the require statements
return gulp.watch(alljs, ['test:browser']);
});
}
gulp.task('watch:coverage', function() {
// todo: only run tests that are linked to file changes by doing
// something smart like reading through the require statements
return gulp.watch(alljs, ['coverage']);
});
gulp.task('watch:lint', function() {
// todo: only lint files that are linked to file changes by doing
// something smart like reading through the require statements
return gulp.watch(alljs, ['lint']);
});
if (browser) {
gulp.task('watch:browser', function() {
return gulp.watch(alljs, ['browser']);
});
}
/**
* Release automation
*/
gulp.task('release:install', function() {
return shell.task([
'npm install',
]);
});
var releaseFiles = ['./package.json'];
if (browser) {
releaseFiles.push('./bower.json');
}
var bump_version = function(importance) {
return gulp.src(releaseFiles)
.pipe(bump({
type: importance
}))
.pipe(gulp.dest('./'));
};
var tempBranch = 'releases/' + new Date().getTime() + '-build';
gulp.task('release:checkout-releases', function(cb) {
git.branch(tempBranch, {
args: ''
}, function() {
git.checkout(tempBranch, {
args: ''
}, cb);
});
});
gulp.task('release:cleanup', function(cb) {
git.branch(tempBranch, {
args: '-D'
}, cb);
});
gulp.task('release:checkout-master', function(cb) {
git.checkout('master', {
args: ''
}, cb);
});
gulp.task('release:sign-built-files', shell.task([
'gpg --yes --out ' + fullname + '.js.sig --detach-sig ' + fullname + '.js',
'gpg --yes --out ' + fullname + '.min.js.sig --detach-sig ' + fullname + '.min.js'
]));
var buildFiles = ['./package.json'];
var signatureFiles = [];
if (browser) {
buildFiles.push(fullname + '.js');
buildFiles.push(fullname + '.js.sig');
buildFiles.push(fullname + '.min.js');
buildFiles.push(fullname + '.min.js.sig');
buildFiles.push('./bower.json');
signatureFiles.push(fullname + '.js.sig');
signatureFiles.push(fullname + '.min.js.sig');
}
var addFiles = function() {
var pjson = require('../../package.json');
return gulp.src(buildFiles)
.pipe(git.add({
args: '-f'
}));
};
var buildCommit = function() {
var pjson = require('../../package.json');
return gulp.src(buildFiles)
.pipe(git.commit('Build: ' + pjson.version, {
args: ''
}));
};
gulp.task('release:add-signed-files', ['release:sign-built-files'], addFiles);
gulp.task('release:add-built-files', addFiles);
if (browser) {
gulp.task('release:build-commit', [
'release:add-signed-files'
], buildCommit);
} else {
gulp.task('release:build-commit', [
'release:add-built-files'
], buildCommit);
}
gulp.task('release:version-commit', function() {
var pjson = require('../../package.json');
return gulp.src(releaseFiles)
.pipe(git.commit('Bump package version to ' + pjson.version, {
args: ''
}));
});
gulp.task('release:push', function(cb) {
git.push('bitpay', 'master', {
args: ''
}, cb);
});
gulp.task('release:push-tag', function(cb) {
var pjson = require('../../package.json');
var name = 'v' + pjson.version;
git.tag(name, 'Release ' + name, function() {
git.push('bitpay', name, cb);
});
});
gulp.task('release:publish', shell.task([
'npm publish'
]));
// requires https://hub.github.com/
var release = function(importance, cb) {
var bumper = 'release:bump:' + importance;
return runsequence(
// Checkout the release temporal branch
'release:checkout-releases',
// Run npm install
'release:install',
// Run tests with gulp test
'test',
// Update package.json and bower.json
bumper,
// build browser files
browser ? 'browser' : 'noop',
// Commit
'release:build-commit',
// Run git push bitpay $VERSION
'release:push-tag',
// Run npm publish
'release:publish',
// Checkout the `master` branch
'release:checkout-master',
// Bump package.json and bower.json, again
bumper,
// Version commit with no binary files to master
'release:version-commit',
// Push to master
'release:push',
// remove release branch
'release:cleanup',
cb);
};
['patch', 'minor', 'major'].forEach(function(importance) {
gulp.task('release:' + importance, function(cb) {
release(importance, cb);
});
gulp.task('release:bump:' + importance, function() {
bump_version(importance);
});
});
gulp.task('release', ['release:patch']);
}
module.exports = startGulp;