Skip to content

Commit

Permalink
chore: upgrade execa
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jan 14, 2025
1 parent f53c080 commit 512c3d3
Show file tree
Hide file tree
Showing 7 changed files with 166 additions and 80 deletions.
4 changes: 2 additions & 2 deletions maintenance/build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import execa from "execa";
import { type Options as ExecaOptions, execa } from "execa";

const project = process.argv[2] ?? "all";
const buildArgs = process.argv
Expand Down Expand Up @@ -29,7 +29,7 @@ const dependsOnZwaveJs = [
// And CLI in the future
];

const execOptions: execa.Options<string> = {
const execOptions: ExecaOptions = {
stdio: "inherit",
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"eslint": "^9.18.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "patch:eslint-plugin-unused-imports@npm%3A4.1.4#~/.yarn/patches/eslint-plugin-unused-imports-npm-4.1.4-a7d7c7cdf3.patch",
"execa": "^5.1.1",
"execa": "^9.5.2",
"husky": "^9.1.6",
"json5": "^2.2.3",
"jsonc-eslint-parser": "^2.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/maintenance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"del-cli": "^6.0.0",
"dprint": "^0.48.0",
"es-main": "^1.3.0",
"execa": "^5.1.1",
"execa": "^9.5.2",
"globrex": "^0.1.2",
"json5": "^2.2.3",
"piscina": "^4.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/maintenance/src/resolveDirtyTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import esMain from "es-main";
import execa from "execa";
import { execa } from "execa";
import crypto from "node:crypto";
import fs from "node:fs";
import path from "node:path";
Expand Down
2 changes: 1 addition & 1 deletion packages/transformers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"cpy-cli": "^5.0.0",
"del-cli": "^6.0.0",
"execa": "^5.1.1",
"execa": "^9.5.2",
"ts-morph": "^25.0.0",
"tsutils": "^3.21.0",
"typescript": "5.7.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/transformers/src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import execa from "execa";
import { execa } from "execa";
import fs from "node:fs/promises";
import path from "node:path";
import { beforeAll, test } from "vitest";
Expand Down
Loading

0 comments on commit 512c3d3

Please sign in to comment.