Skip to content

Commit 3b9a4ea

Browse files
committedSep 19, 2024··
chore: use tinyexec internally
1 parent a8166af commit 3b9a4ea

File tree

3 files changed

+131
-1240
lines changed

3 files changed

+131
-1240
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"@vue/test-utils": "^2.4.6",
6060
"changelogen": "^0.5.7",
6161
"eslint": "9.10.0",
62-
"execa": "^9.4.0",
6362
"globby": "^14.0.2",
6463
"happy-dom": "^15.7.4",
6564
"ipx": "^2.1.0",
@@ -68,6 +67,7 @@
6867
"ofetch": "^1.3.4",
6968
"playwright-core": "^1.47.1",
7069
"semver": "^7.6.3",
70+
"tinyexec": "^0.3.0",
7171
"typescript": "5.6.2",
7272
"vitest": "^2.1.1",
7373
"vitest-environment-nuxt": "^1.0.1",

‎pnpm-lock.yaml

+127-1,236
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎scripts/_utils.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { promises as fsp } from 'node:fs'
22
import { execSync } from 'node:child_process'
33
import { $fetch } from 'ofetch'
44
import { resolve } from 'pathe'
5-
import { execaSync } from 'execa'
5+
import { exec } from 'tinyexec'
66
import { determineSemverChange, getGitDiff, loadChangelogConfig, parseCommits } from 'changelogen'
77

88
export interface Dep {
@@ -107,9 +107,9 @@ export async function determineBumpType() {
107107

108108
export async function getLatestCommits() {
109109
const config = await loadChangelogConfig(process.cwd())
110-
const latestTag = execaSync('git', ['describe', '--tags', '--abbrev=0']).stdout
110+
const { stdout: latestTag } = await exec('git', ['describe', '--tags', '--abbrev=0'])
111111

112-
return parseCommits(await getGitDiff(latestTag), config)
112+
return parseCommits(await getGitDiff(latestTag.trim()), config)
113113
}
114114

115115
export async function getContributors() {

0 commit comments

Comments
 (0)
Please sign in to comment.