forked from microsoft/PowerBI-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
138 lines (119 loc) · 3.86 KB
/
gulpfile.js
File metadata and controls
138 lines (119 loc) · 3.86 KB
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
var gulp = require('gulp-help')(require('gulp'));
var ghPages = require('gulp-gh-pages'),
header = require('gulp-header'),
rename = require('gulp-rename'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
jshint = require('gulp-jshint'),
replace = require('gulp-replace'),
sourcemaps = require('gulp-sourcemaps'),
tslint = require("gulp-tslint"),
ts = require('gulp-typescript'),
flatten = require('gulp-flatten'),
rimraf = require('rimraf'),
merge = require('merge2'),
karma = require('karma'),
webpack = require('webpack');
webpackStream = require('webpack-stream'),
webpackConfig = require('./webpack.config'),
webpackTestConfig = require('./webpack.test.config'),
runSequence = require('run-sequence'),
argv = require('yargs').argv;
;
var package = require('./package.json');
var webpackBanner = package.name + " v" + package.version + " | (c) 2016 Microsoft Corporation " + package.license;
var gulpBanner = "/*! " + webpackBanner + " */\n";
gulp.task('ghpages', function() {
return gulp.src(['./demo/**/*'])
.pipe(ghPages({
force: true
}));
});
gulp.task('watch', 'Watches for changes', ['lint'], function () {
gulp.watch(['./src/**/*.ts', './test/**/*.ts'], ['lint:ts']);
gulp.watch(['./test/**/*.ts'], ['test']);
});
gulp.task('lint', 'Lints all files', function (done) {
runSequence(
'lint:ts',
done
);
});
gulp.task('test', 'Runs all tests', function (done) {
runSequence(
'config',
'compile:spec',
'test:js',
done
);
});
gulp.task('build', 'Runs a full build', function (done) {
runSequence(
'lint',
'clean',
'config',
['compile:ts', 'compile:dts'],
'min:js',
'header',
done
);
});
gulp.task('config', 'Update config version with package version', function () {
return gulp.src(['./src/config.ts'], {base: "./"})
.pipe(replace(/version: '([^']+)'/, `version: '${package.version}'`))
.pipe(gulp.dest('.'));
});
gulp.task('header', 'Add header to distributed files', function () {
return gulp.src(['./dist/*.d.ts'])
.pipe(header(gulpBanner))
.pipe(gulp.dest('./dist'));
});
gulp.task('clean', 'Cleans destination folder', function(done) {
rimraf('./dist/', done);
});
gulp.task('lint:ts', 'Lints all TypeScript', function() {
return gulp.src(['./src/**/*.ts', './test/**/*.ts'])
.pipe(tslint())
.pipe(tslint.report("verbose"));
});
gulp.task('min:js', 'Creates minified JavaScript file', function() {
return gulp.src(['!./dist/*.min.js', './dist/*.js'])
.pipe(uglify({
preserveComments: 'license'
}))
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('./dist'));
});
gulp.task('compile:ts', 'Compile typescript for powerbi library', function() {
webpackConfig.plugins = [
new webpack.BannerPlugin(webpackBanner)
];
return gulp.src(['./src/powerbi.ts'])
.pipe(webpackStream(webpackConfig))
.pipe(gulp.dest('dist/'));
});
gulp.task('compile:dts', 'Generate dts files from modules', function () {
var tsProject = ts.createProject('tsconfig.json', {
declaration: true,
sourceMap: false
});
var tsResult = tsProject.src()
.pipe(ts(tsProject));
return tsResult.dts
.pipe(flatten())
.pipe(gulp.dest('./dist'));
});
gulp.task('compile:spec', 'Compile spec tests', function () {
return gulp.src(['./test/test.spec.ts'])
.pipe(webpackStream(webpackTestConfig))
.pipe(gulp.dest('./tmp'));
});
gulp.task('test:js', 'Run js tests', function (done) {
new karma.Server.start({
configFile: __dirname + '/karma.conf.js',
singleRun: argv.debug ? false : true,
captureTimeout: argv.timeout || 60000
}, done);
});