Skip to content

Commit d495585

Browse files
authored
Fix deps (#126)
1 parent a076bd8 commit d495585

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

package-lock.json

Lines changed: 6 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@apphosting/adapter-angular/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@
3939
],
4040
"license": "Apache-2.0",
4141
"dependencies": {
42-
"fs-extra": "*",
43-
"yaml": "*",
44-
"tslib": "*",
45-
"@npmcli/run-script": "*"
42+
"fs-extra": "^11.1.1",
43+
"yaml": "^2.3.4",
44+
"tslib": "^2.3.1"
4645
},
4746
"peerDependencies": {
4847
"@angular-devkit/architect": "~0.1700.0",

packages/@apphosting/adapter-angular/src/bin/build.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { loadConfig } from "../utils.js";
55
const build = (cwd = process.cwd()) =>
66
new Promise<void>((resolve, reject) => {
77
// TODO warn if the build script contains anything other than `ng build`
8-
const process = spawn("npm", ["run", "build"], { cwd, shell: true, stdio: "pipe" });
9-
process.stdout.on("data", (it: Buffer) => console.log(it.toString().trim()));
10-
process.stderr.on("data", (it: Buffer) => console.error(it.toString().trim()));
8+
const process = spawn("npm", ["run", "build"], { cwd, shell: true, stdio: "inherit" });
119
process.on("exit", (code) => {
1210
if (code === 0) return resolve();
1311
reject();

packages/@apphosting/discover/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"fs-extra": "^11.1.1",
4141
"npm-pick-manifest": "^9.0.0",
4242
"ts-node": "^10.9.1",
43-
"toml": "^3.0.0"
43+
"toml": "^3.0.0",
44+
"yaml": "^2.3.4"
4445
},
4546
"devDependencies": {
4647
"@types/commander": "*",

0 commit comments

Comments
 (0)