-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathsync-env-files.ts
executable file
·135 lines (108 loc) · 3.27 KB
/
sync-env-files.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* The goal here is to sync the .env file with the .env.template file, in every package.
* <sync> is a special value that will be replaced with the value from the root .env file.
*/
import { constants } from 'fs';
import { access, readFile, writeFile } from 'fs/promises';
import { dirname, join, relative } from 'path';
import { parse } from 'dotenv';
import fg from 'fast-glob';
if (process.env.CI) {
console.log('[sync-env-files] CI Detected, skipping');
process.exit(0);
}
const force = ['--force', '-f'].includes(process.argv[2]);
const cwd = process.cwd();
async function main() {
console.log('[sync-env-files] Syncing');
const [localFiles, rootEnv] = await Promise.all([findLocalEnvFiles(), loadRootEnv()]);
async function syncEnvFile(envLocalFile: string) {
const dir = dirname(envLocalFile);
const envFile = join(dir, '.env');
if (force || !(await exists(envFile))) {
console.log('[sync-env-files] Write .env file in', relative(process.cwd(), dir));
await writeFile(envFile, await readFile(envLocalFile));
}
// compare the contents of the local file and the env file
const [localFileContents, envFileContents] = await Promise.all([
readFile(envLocalFile, 'utf8'),
readFile(envFile, 'utf8'),
]);
const localEnv = parse(localFileContents);
const env = parse(envFileContents);
let modified = false;
for (const [key, value] of Object.entries(localEnv)) {
if (!(key in env)) {
modified = true;
env[key] = value;
}
if (env[key] === '<sync>' || env[key] === '') {
modified = true;
env[key] = rootEnv[key] !== undefined ? rootEnv[key] : process.env[key];
}
}
if (modified || force) {
console.log('[sync-env-files] Sync', relative(process.cwd(), envFile));
await writeFile(envFile, stringifyDotEnv(env), 'utf8');
}
}
await Promise.all(localFiles.map(syncEnvFile));
console.log('[sync-env-files] Synced');
}
main().catch(error => {
console.error(error);
process.exit(1);
});
async function exists(file: string) {
try {
await access(file, constants.F_OK);
return true;
} catch {
return false;
}
}
function findLocalEnvFiles(): Promise<string[]> {
return fg('**/.env.template', {
ignore: ['**/node_modules/**', '**/dist/**'],
cwd,
});
}
async function loadRootEnv() {
const rootEnvFile = join(cwd, '.env');
return (await exists(rootEnvFile)) ? parse(await readFile(rootEnvFile, 'utf8')) : {};
}
function stringifyDotEnv(obj) {
const quote = /[\s"']/;
if (typeof obj !== 'object') {
throw new Error('stringify() expects an object');
}
return Object.keys(obj)
.map(key => {
const val = obj[key];
let str = '';
switch (typeof val) {
case 'string':
try {
JSON.parse(val);
str = val;
} catch (e) {
str = quote.test(val) ? JSON.stringify(val) : val;
}
break;
case 'boolean':
case 'number':
str = String(val);
break;
case 'undefined':
str = '';
break;
case 'object':
if (val !== null) {
str = JSON.stringify(val);
}
break;
}
return `${key}=${str}`;
})
.join('\n');
}