forked from stellar/js-stellar-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
123 lines (105 loc) · 3.19 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
'use strict';
var gulp = require('gulp');
var isparta = require('isparta');
var plugins = require('gulp-load-plugins')();
var runSequence = require('run-sequence');
var webpack = require("webpack");
gulp.task('default', ['build']);
gulp.task('lint:src', function() {
return gulp.src(['src/**/*.js'])
.pipe(plugins.plumber())
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter('jshint-stylish'))
.pipe(plugins.jshint.reporter('fail'));
});
// Lint our test code
gulp.task('lint:test', function() {
return gulp.src(['test/unit/**/*.js'])
.pipe(plugins.plumber())
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter('jshint-stylish'))
.pipe(plugins.jshint.reporter('fail'));
});
gulp.task('build', function(done) {
runSequence('clean', 'build:node', 'build:browser', done);
});
gulp.task('test', function(done) {
runSequence('clean', 'test:node', 'test:browser', done);
});
gulp.task('hooks:precommit', ['build'], function() {
return gulp.src(['dist/*', 'lib/*'])
.pipe(plugins.git.add());
});
gulp.task('build:node', ['lint:src'], function() {
return gulp.src('src/**/*.js')
.pipe(plugins.babel())
.pipe(gulp.dest('lib'));
});
gulp.task('build:browser', ['lint:src'], function() {
return gulp.src('src/browser.js')
.pipe(plugins.webpack({
output: { library: 'StellarBase' },
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'}
]
},
plugins: [
// Ignore native modules (ed25519)
new webpack.IgnorePlugin(/ed25519/)
]
}))
.pipe(plugins.rename('stellar-base.js'))
.pipe(gulp.dest('dist'))
.pipe(plugins.uglify({
output: {
ascii_only: true
}
}))
.pipe(plugins.rename('stellar-base.min.js'))
.pipe(gulp.dest('dist'));
});
gulp.task('test:init-istanbul', ['clean-coverage'], function () {
return gulp.src(['src/**/*.js'])
.pipe(plugins.istanbul({
instrumenter: isparta.Instrumenter
}))
.pipe(plugins.istanbul.hookRequire());
});
gulp.task('test:node', ['build:node', 'test:init-istanbul'], function() {
return gulp.src(["test/test-helper.js", "test/unit/**/*.js"])
.pipe(plugins.mocha({
reporter: ['dot']
}))
.pipe(plugins.istanbul.writeReports());
});
gulp.task('test:browser', ["build:browser"], function (done) {
var Server = require('karma').Server;
var server = new Server({ configFile: __dirname + '/karma.conf.js' });
server.start(function() {
done();
});
});
gulp.task('test:sauce', ["build:browser"], function (done) {
var Server = require('karma').Server;
var server = new Server({ configFile: __dirname + '/karma-sauce.conf.js' });
server.start(function() {
done();
});
});
gulp.task('clean', function () {
return gulp.src(['dist', 'lib'], { read: false })
.pipe(plugins.rimraf());
});
gulp.task('watch', ['build'], function() {
gulp.watch('lib/**/*', ['build']);
});
gulp.task('clean-coverage', function() {
return gulp.src(['coverage'], { read: false })
.pipe(plugins.rimraf());
});
gulp.task('submit-coverage', function() {
return gulp
.src("./coverage/**/lcov.info")
.pipe(plugins.coveralls());
});