Skip to content

Commit

Permalink
Fix deps (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdaniels authored Dec 14, 2023
1 parent a076bd8 commit d495585
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
14 changes: 6 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions packages/@apphosting/adapter-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@
],
"license": "Apache-2.0",
"dependencies": {
"fs-extra": "*",
"yaml": "*",
"tslib": "*",
"@npmcli/run-script": "*"
"fs-extra": "^11.1.1",
"yaml": "^2.3.4",
"tslib": "^2.3.1"
},
"peerDependencies": {
"@angular-devkit/architect": "~0.1700.0",
Expand Down
4 changes: 1 addition & 3 deletions packages/@apphosting/adapter-angular/src/bin/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import { loadConfig } from "../utils.js";
const build = (cwd = process.cwd()) =>
new Promise<void>((resolve, reject) => {
// TODO warn if the build script contains anything other than `ng build`
const process = spawn("npm", ["run", "build"], { cwd, shell: true, stdio: "pipe" });
process.stdout.on("data", (it: Buffer) => console.log(it.toString().trim()));
process.stderr.on("data", (it: Buffer) => console.error(it.toString().trim()));
const process = spawn("npm", ["run", "build"], { cwd, shell: true, stdio: "inherit" });
process.on("exit", (code) => {
if (code === 0) return resolve();
reject();
Expand Down
3 changes: 2 additions & 1 deletion packages/@apphosting/discover/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"fs-extra": "^11.1.1",
"npm-pick-manifest": "^9.0.0",
"ts-node": "^10.9.1",
"toml": "^3.0.0"
"toml": "^3.0.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/commander": "*",
Expand Down

0 comments on commit d495585

Please sign in to comment.