Skip to content

Commit 7f20888

Browse files
committed
feat: update deps
1 parent ba53d05 commit 7f20888

File tree

4 files changed

+927
-1202
lines changed

4 files changed

+927
-1202
lines changed

build.config.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ export default defineBuildConfig({
88
declaration: true,
99
clean: true,
1010
rollup: {
11-
inlineDependencies: true,
11+
inlineDependencies: [
12+
'tiny-conventional-commits-parser',
13+
14+
'prompts',
15+
'kleur',
16+
'sisteransi',
17+
],
1218
},
1319
})

package.json

+15-16
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bumpp",
33
"type": "module",
44
"version": "10.0.3",
5-
"packageManager": "pnpm@10.2.0",
5+
"packageManager": "pnpm@10.6.2",
66
"description": "Bump version, commit changes, tag, and push to Git",
77
"authors": [
88
{
@@ -55,39 +55,38 @@
5555
"lint": "eslint .",
5656
"build": "unbuild",
5757
"stub": "unbuild --stub",
58-
"start": "esno src/cli/run.ts",
58+
"start": "tsx src/cli/run.ts",
5959
"test": "vitest",
60-
"bumpp": "esno src/cli/run.ts",
60+
"bumpp": "tsx src/cli/run.ts",
6161
"prepublishOnly": "pnpm run build",
6262
"release": "pnpm run bumpp && pnpm publish",
6363
"typecheck": "tsc --noEmit"
6464
},
6565
"dependencies": {
66+
"ansis": "^3.17.0",
6667
"args-tokenizer": "^0.3.0",
6768
"c12": "^3.0.2",
6869
"cac": "^6.7.14",
6970
"escalade": "^3.2.0",
70-
"js-yaml": "^4.1.0",
7171
"jsonc-parser": "^3.3.1",
72-
"package-manager-detector": "^0.2.9",
73-
"prompts": "^2.4.2",
72+
"package-manager-detector": "^1.0.0",
7473
"semver": "^7.7.1",
7574
"tinyexec": "^0.3.2",
76-
"tinyglobby": "^0.2.10"
75+
"tinyglobby": "^0.2.12",
76+
"yaml": "^2.7.0"
7777
},
7878
"devDependencies": {
79-
"@antfu/eslint-config": "^4.1.1",
80-
"@types/js-yaml": "^4.0.9",
81-
"@types/node": "^22.13.1",
79+
"@antfu/eslint-config": "^4.8.1",
80+
"@types/node": "^22.13.10",
8281
"@types/prompts": "^2.4.9",
8382
"@types/semver": "^7.5.8",
84-
"ansis": "^3.12.0",
85-
"eslint": "^9.19.0",
86-
"esno": "^4.8.0",
83+
"eslint": "^9.22.0",
84+
"prompts": "^2.4.2",
8785
"rimraf": "^6.0.1",
8886
"tiny-conventional-commits-parser": "^0.0.1",
89-
"typescript": "^5.7.3",
90-
"unbuild": "^3.3.1",
91-
"vitest": "^3.0.5"
87+
"tsx": "^4.19.3",
88+
"typescript": "^5.8.2",
89+
"unbuild": "^3.5.0",
90+
"vitest": "^3.0.8"
9291
}
9392
}

0 commit comments

Comments
 (0)