forked from ng-bootstrap/ng-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
235 lines (185 loc) · 7.86 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
var gulp = require('gulp');
var ts = require('gulp-typescript');
var gutil = require('gulp-util');
var sourcemaps = require('gulp-sourcemaps');
var ddescribeIit = require('gulp-ddescribe-iit');
var shell = require('gulp-shell');
var ghPages = require('gulp-gh-pages');
var gulpFile = require('gulp-file');
var del = require('del');
var merge = require('merge2');
var clangFormat = require('clang-format');
var gulpFormat = require('gulp-clang-format');
var runSequence = require('run-sequence');
var tslint = require('gulp-tslint');
var webpack = require('webpack');
var PATHS = {
src: 'src/**/*.ts',
srcIndex: 'src/index.ts',
specs: 'src/**/*.spec.ts',
testHelpers: 'src/util/matchers.ts',
demo: 'demo/**/*.ts',
demoDist: 'demo/dist/**/*',
typings: 'typings/index.d.ts',
jasmineTypings: 'typings/globals/jasmine/index.d.ts',
demoApiDocs: 'demo/src'
};
function webpackCallBack(taskName, gulpDone) {
return function(err, stats) {
if (err) throw new gutil.PluginError(taskName, err);
gutil.log("[" + taskName + "]", stats.toString());
gulpDone();
}
}
// Transpiling & Building
var cjsProject = ts.createProject('tsconfig.json', {declaration: true});
var esmProject = ts.createProject('tsconfig-es2015.json');
gulp.task('clean:build', function() { return del('dist/'); });
gulp.task('cjs', function() {
var tsResult = gulp.src([PATHS.src, PATHS.typings, '!' + PATHS.specs, '!' + PATHS.testHelpers])
.pipe(sourcemaps.init())
.pipe(ts(cjsProject));
return merge([
tsResult.dts.pipe(gulp.dest('dist/')),
tsResult.js.pipe(sourcemaps.write('.')).pipe(gulp.dest('dist/'), tsResult.js.pipe(gulp.dest('dist/')))
]);
});
gulp.task('esm', function() {
var tsResult = gulp.src([PATHS.src, PATHS.jasmineTypings, '!' + PATHS.specs, '!' + PATHS.testHelpers])
.pipe(sourcemaps.init())
.pipe(ts(esmProject));
return merge([
tsResult.dts.pipe(gulp.dest('dist/esm')),
tsResult.js.pipe(sourcemaps.write('.')).pipe(gulp.dest('dist/esm'), tsResult.js.pipe(gulp.dest('dist/esm')))
]);
});
gulp.task('umd', function(cb) {
function ngExternal(ns) {
var ng2Ns = '@angular/' + ns;
return {root: ['ng', ns], commonjs: ng2Ns, commonjs2: ng2Ns, amd: ng2Ns};
}
webpack(
{
entry: './dist/index.js',
output: {filename: 'dist/bundles/ng-bootstrap.js', library: 'ngb', libraryTarget: 'umd'},
devtool: 'source-map',
externals: {
'@angular/core': ngExternal('core'),
'@angular/common': ngExternal('common'),
'@angular/forms': ngExternal('forms'),
'rxjs/Rx': {root: 'Rx', commonjs: 'rxjs/Rx', commonjs2: 'rxjs/Rx', amd: 'rxjs/Rx'},
// 'rxjs/add/operator/let': 'rxjs/add/operator/let'
'rxjs/add/operator/let': {
root: ['Rx', 'Observable', 'prototype'],
commonjs: 'rxjs/add/operator/let',
commonjs2: 'rxjs/add/operator/let',
amd: 'rxjs/add/operator/let'
}
}
},
webpackCallBack('webpack', cb));
});
gulp.task('npm', function() {
var pkgJson = require('./package.json');
var targetPkgJson = {};
var fieldsToCopy = ['version', 'description', 'keywords', 'author', 'repository', 'license', 'bugs', 'homepage'];
targetPkgJson['name'] = '@ng-bootstrap/ng-bootstrap';
fieldsToCopy.forEach(function(field) { targetPkgJson[field] = pkgJson[field]; });
targetPkgJson['main'] = 'index.js';
targetPkgJson['jsnext:main'] = 'esm/index.js';
targetPkgJson.peerDependencies = {};
Object.keys(pkgJson.dependencies).forEach(function(dependency) {
targetPkgJson.peerDependencies[dependency] = '^' + pkgJson.dependencies[dependency];
});
return gulp.src('README.md')
.pipe(gulpFile('package.json', JSON.stringify(targetPkgJson, null, 2)))
.pipe(gulp.dest('dist'));
});
gulp.task('changelog', function() {
var conventionalChangelog = require('gulp-conventional-changelog');
return gulp.src('CHANGELOG.md', {})
.pipe(conventionalChangelog({preset: 'angular', releaseCount: 1}, {
// Override release version to avoid `v` prefix for git comparison
// See https://github.com/conventional-changelog/conventional-changelog-core/issues/10
currentTag: require('./package.json').version
}))
.pipe(gulp.dest('./'));
});
// Testing
var testProject = ts.createProject('tsconfig.json');
function startKarmaServer(isTddMode, done) {
var karmaServer = require('karma').Server;
var travis = process.env.TRAVIS;
var config = {configFile: __dirname + '/karma.conf.js', singleRun: !isTddMode, autoWatch: isTddMode};
if (travis) {
config['reporters'] = ['dots'];
config['browsers'] = ['Firefox'];
}
new karmaServer(config, done).start();
}
gulp.task('clean:tests', function() { return del('temp/'); });
gulp.task('build:tests', function() {
var tsResult = gulp.src([PATHS.src, PATHS.typings]).pipe(sourcemaps.init()).pipe(ts(testProject));
return tsResult.js.pipe(sourcemaps.write('.')).pipe(gulp.dest('temp'));
});
gulp.task('clean:build-tests', function(done) { runSequence('clean:tests', 'build:tests', done); });
gulp.task(
'ddescribe-iit', function() { return gulp.src(PATHS.specs).pipe(ddescribeIit({allowDisabledTests: false})); });
gulp.task('test', ['clean:build-tests'], function(done) { startKarmaServer(false, done); });
gulp.task('tdd', ['clean:build-tests'], function(done) {
startKarmaServer(true, function(err) {
done(err);
process.exit(1);
});
gulp.watch(PATHS.src, ['build:tests']);
});
// Formatting
gulp.task('lint', function() {
return gulp.src([PATHS.src, PATHS.demo, '!demo/src/api-docs.ts'])
.pipe(tslint({configuration: require('./tslint.json'), formatter: 'prose'}))
.pipe(tslint.report({summarizeFailureOutput: true}));
});
gulp.task('check-format', function() {
return doCheckFormat().on(
'warning', function(e) { console.log("NOTE: this will be promoted to an ERROR in the continuous build"); });
});
gulp.task('enforce-format', function() {
return doCheckFormat().on('warning', function(e) {
console.log("ERROR: You forgot to run clang-format on your change.");
console.log("See https://github.com/ng-bootstrap/ng-bootstrap/blob/master/DEVELOPER.md#clang-format");
process.exit(1);
});
});
function doCheckFormat() {
return gulp
.src([
'gulpfile.js', 'karma-test-shim.js', 'misc/api-doc.js', 'misc/api-doc.spec.js', 'misc/demo-gen.js', PATHS.src
])
.pipe(gulpFormat.checkFormat('file', clangFormat));
}
// Demo
gulp.task('generate-docs', function() {
var getApiDocs = require('./misc/get-doc');
var docs = `const API_DOCS = ${JSON.stringify(getApiDocs(), null, 2)};\n\nexport default API_DOCS;`;
return gulpFile('api-docs.ts', docs, {src: true}).pipe(gulp.dest(PATHS.demoApiDocs));
});
gulp.task('clean:demo', function() { return del('demo/dist'); });
gulp.task('clean:demo-cache', function() { return del('.publish/'); });
gulp.task(
'demo-server', ['generate-docs'],
shell.task(['webpack-dev-server --port 9090 --config webpack.demo.js --hot --inline --progress']));
gulp.task(
'build:demo', ['clean:demo', 'generate-docs'],
shell.task(['MODE=build webpack --config webpack.demo.js --progress --profile --bail']));
gulp.task('demo-push', function() {
return gulp.src(PATHS.demoDist)
.pipe(ghPages({remoteUrl: "https://github.com/ng-bootstrap/ng-bootstrap.github.io.git", branch: "master"}));
});
// Public Tasks
gulp.task('clean', ['clean:build', 'clean:tests', 'clean:demo', 'clean:demo-cache']);
gulp.task('build', function(done) {
runSequence('lint', 'enforce-format', 'ddescribe-iit', 'test', 'clean:build', 'cjs', 'esm', 'umd', 'npm', done);
});
gulp.task(
'deploy-demo', function(done) { runSequence('clean:demo', 'build:demo', 'demo-push', 'clean:demo-cache', done); });
gulp.task('default', function(done) { runSequence('lint', 'enforce-format', 'ddescribe-iit', 'test', done); });