-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
36 lines (36 loc) · 1.04 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
const gulp = require('gulp');
const path = require("path");
const fs = require("fs");
const childProcess = require("child_process");
gulp.task("deploy", async (done) => {
await typescriptをコンパイル();
await ファイルをコピー();
done();
});
function ファイルをコピー() {
return new Promise((resolve, reject) => {
gulp.src(['./src/*.html'])
.pipe(gulp.dest("./docs/"))
.on("finish", () => { resolve(); });
});
}
function typescriptをコンパイル() {
return new Promise((resolve, reject) => {
console.log(`typescriptをコンパイル。`);
const cp = childProcess.spawn(`node`, [`./node_modules/typescript/bin/tsc`]);
cp.stderr.on("data", (data) => {
console.error(data.toString("utf-8"));
});
cp.stdout.on("data", (data) => {
console.log(data.toString("utf-8"));
})
cp.on("exit", (code) => {
if (code !== 0) {
console.error(`typescriptのコンパイルに失敗しました。`);
reject();
} else {
resolve();
}
});
});
}