Skip to content

Commit

Permalink
chore(deps): update execa to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbieGoede committed Sep 13, 2024
1 parent b01a3fe commit b205cce
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 49 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"execa": "^5.0.0",
"execa": "^9.3.0",
"fixpack": "^4.0.0",
"globals": "^15.9.0",
"globby": "^14.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/format-explorer/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import execa from 'execa'
import { execaSync } from 'execa'
import path from 'node:path'
import { URL } from 'node:url'

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

const __dirname = path.dirname(new URL(import.meta.url).pathname)
Expand Down
Loading

0 comments on commit b205cce

Please sign in to comment.