Skip to content

Commit e2e3d6b

Browse files
authored
chore(deps): update execa to v9 (#1948)
1 parent b01a3fe commit e2e3d6b

File tree

5 files changed

+110
-49
lines changed

5 files changed

+110
-49
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"eslint": "^9.9.1",
9898
"eslint-config-prettier": "^9.1.0",
9999
"eslint-plugin-vue": "^9.28.0",
100-
"execa": "^5.0.0",
100+
"execa": "^9.3.0",
101101
"fixpack": "^4.0.0",
102102
"globals": "^15.9.0",
103103
"globby": "^14.0.1",

packages/format-explorer/vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { defineConfig } from 'vite'
22
import vue from '@vitejs/plugin-vue'
3-
import execa from 'execa'
3+
import { execaSync } from 'execa'
44
import path from 'node:path'
55
import { URL } from 'node:url'
66

7-
const commit = execa.sync('git', ['rev-parse', 'HEAD']).stdout.slice(0, 7)
7+
const commit = execaSync('git', ['rev-parse', 'HEAD']).stdout.slice(0, 7)
88
console.log('commit', commit)
99

1010
const __dirname = path.dirname(new URL(import.meta.url).pathname)

0 commit comments

Comments
 (0)