forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
198 lines (157 loc) · 5.34 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
'use strict';
var gulp = require('gulp');
var coveralls = require('@kollavarsham/gulp-coveralls');
//var jshint = require('gulp-jshint');
var mocha = require('gulp-mocha');
var rename = require('gulp-rename');
var shell = require('gulp-shell');
var terser = require('gulp-terser');
//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) {
var task = {};
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/';
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'
}));
};
task['test:karma'] = shell.task([
karmaPath + ' start ' + buildPath + 'karma.conf.js --single-run '
]);
task['test:node'] = testmocha;
task['test:node:nofail'] = function() {
return testmocha().on('error', ignoreerror);
};
task['noop']= function() {};
/**
* file generation
*/
if (browser) {
var browserifyCommand;
if (name !== 'lib') {
browserifyCommand = browserifyPath + ' --require ./index.js:' + fullname + ' --external bitcore-lib -o ' + fullname + '.js';
} else {
browserifyCommand = browserifyPath + ' --require ./index.js:bitcore-lib -o bitcore-lib.js';
}
task['browser:uncompressed'] = shell.task([
browserifyCommand
]);
task['browser:terser'] =function() {
return gulp.src(fullname + '.js')
.pipe(terser({
mangle: true,
compress: true
}))
.pipe(rename(fullname + '.min.js'))
.pipe(gulp.dest('.'))
.on('error', console.error);
};
task['browser:compressed'] =
gulp.series(task['browser:uncompressed'], task['browser:terser']);
task['browser:maketests'] = shell.task([
'find test/ -type f -name "*.js" | xargs ' + browserifyPath + ' -t brfs -o tests.js'
]);
task['browser'] = task['browser:compressed'];
}
/**
* code quality and documentation
*/
// task['lint']= function() {
// return gulp.src(alljs)
// .pipe(jshint())
// .pipe(jshint.reporter('default'));
// };
// task['plato']= shell.task([platoPath + ' -d report -r -l .jshintrc -t ' + fullname + ' lib']);
task['coverage']= shell.task([istanbulPath + ' cover ' + mochaPath + ' -- --recursive']);
task['coveralls'] = gulp.series(task['coverage'], function() {
gulp.src('coverage/lcov.info').pipe(coveralls());
});
/**
* watch tasks
*/
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, gulp.series('test'));
};
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, gulp.series('test:node'));
};
if (browser) {
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, task['test:browser']);
};
}
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, task[coverage]);
};
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, task[lint]);
};
if (browser) {
task['watch:browser']= function() {
return gulp.watch(alljs, task[browser]);
};
}
if (browser) {
task['test:browser'] = gulp.series(task['browser:uncompressed'], task['browser:maketests'], task['test:karma']);
task['test']= gulp.series(task['test:node'], task['test:browser']);
} else {
task['test']= task['test:node'];
}
task['default']= task['test'];
/**
* Release automation
*/
task['release:install']= shell.task([ 'npm install']);
var releaseFiles = ['./package.json'];
return task;
}
module.exports = startGulp;