Skip to content

Commit

Permalink
chore: upgrade execa (#1769)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi authored Nov 3, 2024
1 parent f6b9d01 commit 6a0492d
Show file tree
Hide file tree
Showing 18 changed files with 124 additions and 138 deletions.
2 changes: 1 addition & 1 deletion clis/generator-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"depcheck": "^1.4.3",
"esbuild": "0.20.2",
"eslint": "^8.56.0",
"execa": "^5.1.1",
"execa": "^9.5.1",
"lodash-es": "^4.17.12",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.3.2",
Expand Down
2 changes: 1 addition & 1 deletion clis/generator-cli/src/__test__/testGenerateReadme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import execa from "execa";
import { execa } from "execa";
import { writeFile } from "fs/promises";
import path from "path";
import tmp from "tmp-promise";
Expand Down
2 changes: 1 addition & 1 deletion clis/generator-cli/src/__test__/testGenerateReference.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import execa from "execa";
import { execa } from "execa";
import { writeFile } from "fs/promises";
import path from "path";
import tmp from "tmp-promise";
Expand Down
2 changes: 1 addition & 1 deletion clis/vercel-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"@fern-fern/fern-docs-sdk": "0.0.5",
"@fern-fern/vercel": "0.0.4655",
"execa": "^9.4.0",
"execa": "^9.5.1",
"ts-essentials": "^10.0.1"
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@
"esbuild": "0.20.2",
"jsonpath-plus": "10.0.0",
"markdown-to-jsx": "7.4.0",
"webpack": "5.94.0"
"webpack": "5.94.0",
"clipboardy": "4.0.0"
},
"dependenciesMeta": {
"jsonc-parser@2.2.1": {
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"dependencies": {
"chalk": "^5.3.0",
"execa": "^5.1.1",
"execa": "^9.5.1",
"js-yaml": "^4.1.0",
"ts-essentials": "^10.0.1",
"yargs": "^17.4.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/src/getAllPackages.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import execa from "execa";
import { execa } from "execa";
import path from "path";

export interface YarnPackage {
Expand Down
Loading

0 comments on commit 6a0492d

Please sign in to comment.