forked from coder/code-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-packages.ts
More file actions
42 lines (38 loc) · 1.02 KB
/
Copy pathinstall-packages.ts
File metadata and controls
42 lines (38 loc) · 1.02 KB
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 { exec } from "child_process";
import { existsSync, readdirSync } from "fs";
import { join, resolve } from "path";
import { logger, field } from "../packages/logger";
/**
* Install dependencies for a single package.
*/
const doInstall = (pkg: string, path: string): void => {
logger.info(`Installing "${pkg}" dependencies...`);
exec("yarn", {
cwd: path,
maxBuffer: 1024 * 1024 * 10,
}, (error, stdout, stderr) => {
if (error) {
logger.error(
`Failed to install "${pkg}" dependencies`,
field("error", error),
field("stdout", stdout),
field("stderr", stderr),
);
process.exit(1);
}
logger.info(`Successfully grabbed \"${pkg}\" dependencies!`);
});
};
/**
* Install dependencies for all packages.
*/
const handlePackages = (dir: string): void => {
readdirSync(dir).forEach((pkg) => {
const pkgDir = join(dir, pkg);
const pkgJsonPath = join(pkgDir, "package.json");
if (existsSync(pkgJsonPath)) {
doInstall(pkg, pkgDir);
}
});
};
handlePackages(resolve(__dirname, "..", "packages"));