-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGulpfile.ts
93 lines (79 loc) · 2.19 KB
/
Gulpfile.ts
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
import path from "node:path";
import {
chdir,
cwd,
} from "node:process";
import {
fileURLToPath,
} from "node:url"
import {
series
} from "gulp";
import { InvokeTSC_main /*, InvokeTSC_prebuild */ } from "#gulp-utilities/InvokeTSC.js";
const projectRoot: string = path.normalize(path.dirname(
fileURLToPath(import.meta.url)
));
type VoidCallbackArray = (() => Promise<void>)[];
async function childGulpfile(
localPathToDir: string
): Promise<void>
{
const fullPathToDir = path.join(projectRoot, localPathToDir);
let stackDir: string;
function pushd(): Promise<void> {
stackDir = cwd();
chdir(path.normalize(path.join(stackDir, localPathToDir)));
return Promise.resolve();
}
pushd.displayName = `pushd(${localPathToDir})`;
function popd(): Promise<void> {
chdir(stackDir);
return Promise.resolve();
}
popd.displayName = `popd(${localPathToDir})`;
await pushd();
try {
await InvokeTSC_main();
const importCallbacks = (await import(path.join(fullPathToDir, "Gulpfile.js"))).default as VoidCallbackArray;
for (const callback of importCallbacks) {
await callback();
}
}
finally {
await popd();
}
}
function namedChildGulpFile(
localPathToDir: string
): ReturnType<typeof series>
{
const callback = () => childGulpfile(localPathToDir);
callback.displayName = localPathToDir;
return callback;
}
export const stage_one = series([
namedChildGulpFile("utilities"),
namedChildGulpFile("stage_0_references"),
namedChildGulpFile("stage_1_snapshot"),
]);
export const stage_two = series([
namedChildGulpFile("stage_2_generation"),
namedChildGulpFile("stage_2_integration/pre-build"),
namedChildGulpFile("stage_2_integration"),
namedChildGulpFile("stage_2_snapshot/pre-build"),
namedChildGulpFile("stage_2_snapshot"),
]);
export const stage_three = series([
namedChildGulpFile("stage_3_generation"),
namedChildGulpFile("stage_3_integration/pre-build"),
namedChildGulpFile("stage_3_integration"),
namedChildGulpFile("stage_3_snapshot/pre-build"),
namedChildGulpFile("stage_3_snapshot"),
]);
export const use_cases = namedChildGulpFile("use-cases");
export default series([
stage_one,
stage_two,
stage_three,
use_cases
]);