-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
64 lines (54 loc) · 1.82 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
const { series } = require('gulp');
const { exec } = require('child_process');
const { readdirSync, rmSync, copyFileSync, readFileSync, writeFileSync } = require('fs');
const chalk = require('chalk');
const path = require("path");
const paths = {
src: ['src/**', 'test/**', './*.ts'],
out: './dist',
test: './dist/test/**/*.js',
publish: './publish',
coverage: './coverage',
copy: ['./LICENSE', './README.md', './dist/src/example.js', './dist/src/progress.js', './ts-progress.d.ts'],
};
function run(cmd, onClose){
exec(cmd, function (err, stdout, stderr) {
if(err){
console.log();
console.log(chalk.red(stdout));
if(stderr){
console.log();
console.log(chalk.red(stderr));
}
throw err;
}
console.log(stdout);
onClose();
});
}
function build(cb) {
run('tsc', cb)
}
function clean(cb) {
readdirSync(paths.out).forEach(f => rmSync(`${paths.out}/${f}`, {recursive: true}));
readdirSync(paths.coverage).forEach(f => rmSync(`${paths.coverage}/${f}`, {recursive: true}));
readdirSync(paths.publish).forEach(f => rmSync(`${paths.publish}/${f}`, {recursive: true}));
cb();
}
function copy(cb) {
paths.copy.forEach(f => copyFileSync(`${f}`, `${paths.publish}/${path.basename(f)}`));
let json = JSON.parse(readFileSync('package.json', 'utf8'));
json.main = 'progress.js';
writeFileSync(`${paths.publish}/package.json`, JSON.stringify(json, null, 2), 'utf8');
cb();
}
function pack(cb) {
run('npm pack ' + paths.publish, cb)
}
function publish(cb) {
run('npm publish ' + paths.publish, cb)
}
exports.copy = series(clean, build, copy);
exports.pack = series(clean, build, copy, pack);
exports.publish = series(clean, build, copy, publish);
exports.clean = clean;