forked from live-codes/livecodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n-exclude.js
56 lines (42 loc) · 1.77 KB
/
i18n-exclude.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
// This script is for excluding other i18n locales from type checking, as they might stay outdated and cause errors
// For all .ts files in src/livecodes/i18n/locales/**/ but not in src/livecodes/i18n/locales/en/
// If process.env.BUILD_INCLUDE_LOCALES is set to true, do nothing
// Otherwise, add // @ts-nocheck to the first line of the file if phase is 'pre', or remove it if phase is 'post'
const fs = require('fs');
const path = require('path');
const TS_NOCHECK = `// @ts-nocheck
// This comment is added by i18n-exclude script and should be automatically removed after build.
// If you see this comment in the file, it means there is something wrong during the build process.
`;
const localesDir = path.resolve('src/livecodes/i18n/locales');
const excludeLocales = () => {
if (process.env.BUILD_INCLUDE_LOCALES === 'true') return;
const phase = process.argv[2];
console.log(`Running i18n-exclude in ${phase} phase`);
const dirs = fs
.readdirSync(localesDir, { withFileTypes: true })
.filter((dirent) => dirent.isDirectory() && dirent.name !== 'en')
.map((dirent) => path.join(localesDir, dirent.name));
dirs.forEach((dir) => {
const tsFiles = fs
.readdirSync(dir)
.filter((file) => file.endsWith('.ts'))
.map((file) => path.join(dir, file));
for (const file of tsFiles) {
let content = fs.readFileSync(file, 'utf8');
if (phase === 'pre') {
if (!content.startsWith(TS_NOCHECK)) {
// Only add the comment if it doesn't exist
content = TS_NOCHECK + content;
}
} else if (phase === 'post') {
content = content.replace(TS_NOCHECK, '');
}
fs.writeFileSync(file, content, 'utf8');
}
});
};
if (require.main === module) {
excludeLocales();
}
module.exports = { TS_NOCHECK };