forked from angular/angular-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.mjs
53 lines (46 loc) · 1.46 KB
/
watch.mjs
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
#!/usr/bin/env zx
import { argv, chalk } from 'zx';
import { applyPatches, copyLocalizedFiles, resetBuildDir, watchAIO, watchLocalizedFiles } from './lib/common.mjs';
try {
const { init = false } = argv;
console.log(chalk.green('==== setup ===='));
await setup({ init });
console.log(chalk.green('==== preWatch ===='));
await preWatch({ init });
console.log(chalk.green('==== watch ===='));
await watch();
} catch (e) {
console.error(chalk.red(e));
process.exit(1);
}
async function setup({ init }) {
console.log('');
console.log(chalk.white('変更監視の対象は、aio-ja 内のファイル と build/aio 内のソースコードです。'));
if (init) {
console.log(chalk.yellow('build ディレクトリを初期化し、キャッシュを破棄します。'));
} else {
console.log(chalk.white('build ディレクトリを初期化するには --init オプションを指定してください。'));
}
console.log('');
await resetBuildDir({ init });
}
async function preWatch({ init }) {
if (init) {
// copy translated files
console.log(chalk.cyan('Copy localized files...'));
await copyLocalizedFiles();
// apply patches
console.log(chalk.cyan('Apply patches...'));
await applyPatches();
}
}
async function watch() {
const ctrl = new AbortController();
await watchLocalizedFiles(ctrl.signal);
try {
await watchAIO();
} finally {
console.log(chalk.cyan('Abort watching...'));
ctrl.abort();
}
}