bumpp 10.0.2 → 10.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +16 -8
- package/dist/index.mjs +6 -4
- package/dist/shared/bumpp.BYfOJvKL.mjs +7129 -0
- package/package.json +16 -17
- package/dist/shared/bumpp.B_9jg8A3.mjs +0 -941
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bumpp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "10.0
|
|
4
|
+
"version": "10.1.0",
|
|
5
5
|
"description": "Bump version, commit changes, tag, and push to Git",
|
|
6
6
|
"authors": [
|
|
7
7
|
{
|
|
@@ -51,40 +51,39 @@
|
|
|
51
51
|
"node": ">=18"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
+
"ansis": "^3.17.0",
|
|
54
55
|
"args-tokenizer": "^0.3.0",
|
|
55
|
-
"c12": "^
|
|
56
|
+
"c12": "^3.0.2",
|
|
56
57
|
"cac": "^6.7.14",
|
|
57
58
|
"escalade": "^3.2.0",
|
|
58
|
-
"js-yaml": "^4.1.0",
|
|
59
59
|
"jsonc-parser": "^3.3.1",
|
|
60
|
-
"package-manager-detector": "^0.
|
|
61
|
-
"prompts": "^2.4.2",
|
|
60
|
+
"package-manager-detector": "^1.0.0",
|
|
62
61
|
"semver": "^7.7.1",
|
|
63
62
|
"tinyexec": "^0.3.2",
|
|
64
|
-
"tinyglobby": "^0.2.
|
|
63
|
+
"tinyglobby": "^0.2.12",
|
|
64
|
+
"yaml": "^2.7.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@antfu/eslint-config": "^4.
|
|
68
|
-
"@types/
|
|
69
|
-
"@types/node": "^22.13.1",
|
|
67
|
+
"@antfu/eslint-config": "^4.8.1",
|
|
68
|
+
"@types/node": "^22.13.10",
|
|
70
69
|
"@types/prompts": "^2.4.9",
|
|
71
70
|
"@types/semver": "^7.5.8",
|
|
72
|
-
"eslint": "^9.
|
|
73
|
-
"
|
|
74
|
-
"picocolors": "^1.1.1",
|
|
71
|
+
"eslint": "^9.22.0",
|
|
72
|
+
"prompts": "^2.4.2",
|
|
75
73
|
"rimraf": "^6.0.1",
|
|
76
74
|
"tiny-conventional-commits-parser": "^0.0.1",
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
75
|
+
"tsx": "^4.19.3",
|
|
76
|
+
"typescript": "^5.8.2",
|
|
77
|
+
"unbuild": "^3.5.0",
|
|
78
|
+
"vitest": "^3.0.8"
|
|
80
79
|
},
|
|
81
80
|
"scripts": {
|
|
82
81
|
"lint": "eslint .",
|
|
83
82
|
"build": "unbuild",
|
|
84
83
|
"stub": "unbuild --stub",
|
|
85
|
-
"start": "
|
|
84
|
+
"start": "tsx src/cli/run.ts",
|
|
86
85
|
"test": "vitest",
|
|
87
|
-
"bumpp": "
|
|
86
|
+
"bumpp": "tsx src/cli/run.ts",
|
|
88
87
|
"release": "pnpm run bumpp && pnpm publish",
|
|
89
88
|
"typecheck": "tsc --noEmit"
|
|
90
89
|
}
|