forked from bpampuch/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
70 lines (61 loc) · 1.88 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
var gulp = require('gulp');
var webpack = require('webpack');
var mocha = require('gulp-spawn-mocha');
var eslint = require('gulp-eslint');
var each = require('gulp-each');
var fc2json = require('gulp-file-contents-to-json');
var log = require('fancy-log');
var PluginError = require('plugin-error');
var DEBUG = process.env.NODE_ENV === 'debug';
var CI = process.env.CI === 'true';
var vfsBefore = "this.pdfMake = this.pdfMake || {}; this.pdfMake.vfs = ";
var vfsAfter = ";";
gulp.task('build', function (callback) {
webpack(require('./webpack.config.js'), function (err, stats) {
if (err) {
throw new PluginError("webpack", err);
}
log("[webpack]", stats.toString({}));
callback();
});
});
gulp.task('buildWithStandardFonts', function (callback) {
webpack(require('./webpack-standardfonts.config.js'), function (err, stats) {
if (err) {
throw new PluginError("webpack", err);
}
log("[webpack]", stats.toString({}));
callback();
});
});
gulp.task('test', function () {
return gulp.src(['./tests/**/*.js'])
.pipe(mocha({
debugBrk: DEBUG,
R: CI ? 'spec' : 'nyan'
}));
});
gulp.task('lint', function () {
return gulp.src(['./src/**/*.js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('buildFonts', function () {
return gulp.src(['./examples/fonts/*.*'])
.pipe(each(function (content, file, callback) {
var newContent = Buffer.from(content).toString('base64');
callback(null, newContent);
}, 'buffer'))
.pipe(fc2json('vfs_fonts.js', {flat: true}))
.pipe(each(function (content, file, callback) {
var newContent = vfsBefore + content + vfsAfter;
callback(null, newContent);
}, 'buffer'))
.pipe(gulp.dest('build'));
});
gulp.task('watch', function () {
gulp.watch('./src/**', ['test', 'build']);
gulp.watch('./tests/**', ['test']);
});
gulp.task('default', gulp.series(/*'lint',*/ 'test', 'build', 'buildFonts'));