forked from davidje13/Refacto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.mjs
executable file
·43 lines (38 loc) · 1.34 KB
/
install.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
#!/usr/bin/env node
import { join } from 'node:path';
import { basedir, deleteDirectory, log, readJSON } from './helpers/io.mjs';
import { stat } from 'node:fs/promises';
import { exitWithCode, runTask } from './helpers/proc.mjs';
const SKIP_E2E_DEPS = (process.env['SKIP_E2E_DEPS'] ?? 'false') === 'true';
const FORCE = process.argv.slice(2).includes('--force');
const packageJson = await readJSON(join(basedir, 'package.json'));
const dependencyKeys = Object.keys(packageJson).filter((k) =>
k.toLowerCase().includes('dependencies'),
);
if (dependencyKeys.length > 0) {
log(`
Dependencies should not be installed in root package.json!
- remove ${dependencyKeys.map((v) => `"${v}"`).join(', ')}
- add the dependencies to the desired subproject instead
- re-run install
`);
await deleteDirectory(join(basedir, 'node_modules'));
await exitWithCode(1);
}
async function installPackage(pkg) {
const s = await stat(join(basedir, pkg, 'node_modules')).catch(() => null);
if (s === null || FORCE) {
await runTask({
command: 'npm',
args: ['install', '--quiet'],
beginMessage: `Installing ${pkg} dependencies...`,
cwd: join(basedir, pkg),
env: { ...process.env, DISABLE_OPENCOLLECTIVE: '1' },
});
}
}
await installPackage('frontend');
await installPackage('backend');
if (!SKIP_E2E_DEPS) {
await installPackage('e2e');
}