-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.mjs
42 lines (36 loc) · 1.37 KB
/
env.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
import fs from 'fs';
import readline from 'readline';
async function appendLine(outputFileName, line) {
// Each line in input.txt will be successively available here as `line`.
try {
return await fs.promises.appendFile(outputFileName, `${line}\n`);
} catch (err) {
// eslint-disable-next-line no-console
console.error('Error occurred while reading directory!', err);
return 'fail';
}
}
async function processLineByLine() {
const outputFileName = 'public/env-config.js';
const inputFileName = '.env';
// eslint-disable-next-line @typescript-eslint/no-empty-function
if (fs.existsSync('public/env-config.js')) {
await fs.promises.truncate(outputFileName, 0);
}
await appendLine(outputFileName, 'window._env_ = {');
const fileStream = fs.createReadStream(inputFileName);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity,
});
// Note: we use the crlfDelay option to recognize all instances of CR LF
// ('\r\n') in input.txt as a single line break.
// eslint-disable-next-line no-restricted-syntax
for await (const line of rl) {
const key = line.substring(0, line.indexOf('='));
const value = line.substring(line.indexOf('=') + 1);
await appendLine(outputFileName, ` ${key}: "${value}",`);
}
await appendLine(outputFileName, '}');
}
processLineByLine();