bumpp 9.11.1 → 10.0.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/bin/{bumpp.js → bumpp.mjs} +1 -1
- package/dist/{cli.js → cli.mjs} +52 -55
- package/dist/index.mjs +19 -0
- package/dist/{chunk-K27IS2ON.js → shared/bumpp.DE3hJRX3.mjs} +308 -375
- package/package.json +32 -33
- package/dist/cli.cjs +0 -1163
- package/dist/index.cjs +0 -1070
- package/dist/index.js +0 -23
- /package/dist/{cli.d.cts → cli.d.mts} +0 -0
- /package/dist/{index.d.cts → index.d.mts} +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bumpp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
5
|
-
"packageManager": "pnpm@9.15.4",
|
|
4
|
+
"version": "10.0.0",
|
|
6
5
|
"description": "Bump version, commit changes, tag, and push to Git",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
"authors": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Anthony Fu",
|
|
9
|
+
"url": "https://antfu.me"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "James Messinger",
|
|
13
|
+
"url": "https://jamesmessinger.com"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
11
16
|
"license": "MIT",
|
|
12
|
-
"homepage": "https://github.com/antfu/bumpp",
|
|
17
|
+
"homepage": "https://github.com/antfu-collective/bumpp",
|
|
13
18
|
"repository": {
|
|
14
19
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/antfu/bumpp.git"
|
|
20
|
+
"url": "https://github.com/antfu-collective/bumpp.git"
|
|
16
21
|
},
|
|
17
22
|
"keywords": [
|
|
18
23
|
"version",
|
|
@@ -29,36 +34,21 @@
|
|
|
29
34
|
"exports": {
|
|
30
35
|
".": {
|
|
31
36
|
"types": "./dist/index.d.ts",
|
|
32
|
-
"
|
|
33
|
-
"require": "./dist/index.cjs"
|
|
37
|
+
"default": "./dist/index.mjs"
|
|
34
38
|
}
|
|
35
39
|
},
|
|
36
|
-
"main": "dist/index.
|
|
37
|
-
"module": "dist/index.
|
|
38
|
-
"types": "dist/index.d.
|
|
40
|
+
"main": "dist/index.mjs",
|
|
41
|
+
"module": "dist/index.mjs",
|
|
42
|
+
"types": "dist/index.d.mts",
|
|
39
43
|
"bin": {
|
|
40
|
-
"bumpp": "bin/bumpp.
|
|
44
|
+
"bumpp": "bin/bumpp.mjs"
|
|
41
45
|
},
|
|
42
46
|
"files": [
|
|
43
47
|
"bin",
|
|
44
48
|
"dist"
|
|
45
49
|
],
|
|
46
50
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
48
|
-
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"clean": "rimraf .nyc_output coverage dist",
|
|
51
|
-
"lint": "eslint .",
|
|
52
|
-
"lint:fix": "eslint --fix .",
|
|
53
|
-
"build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts --clean",
|
|
54
|
-
"watch": "npm run build -- --watch src",
|
|
55
|
-
"start": "esno src/cli/run.ts",
|
|
56
|
-
"test": "vitest",
|
|
57
|
-
"upgrade": "npm-check -u && npm audit fix",
|
|
58
|
-
"bumpp": "esno src/cli/run.ts",
|
|
59
|
-
"prepublishOnly": "npm run clean && npm run build",
|
|
60
|
-
"release": "npm run bumpp && npm publish",
|
|
61
|
-
"typecheck": "tsc --noEmit"
|
|
51
|
+
"node": ">=18"
|
|
62
52
|
},
|
|
63
53
|
"dependencies": {
|
|
64
54
|
"c12": "^2.0.1",
|
|
@@ -69,7 +59,6 @@
|
|
|
69
59
|
"package-manager-detector": "^0.2.8",
|
|
70
60
|
"prompts": "^2.4.2",
|
|
71
61
|
"semver": "^7.6.3",
|
|
72
|
-
"tiny-conventional-commits-parser": "^0.0.1",
|
|
73
62
|
"tinyexec": "^0.3.2",
|
|
74
63
|
"tinyglobby": "^0.2.10"
|
|
75
64
|
},
|
|
@@ -83,11 +72,21 @@
|
|
|
83
72
|
"eslint": "^9.19.0",
|
|
84
73
|
"esno": "^4.8.0",
|
|
85
74
|
"log-symbols": "^7.0.0",
|
|
86
|
-
"npm-check": "^6.0.1",
|
|
87
75
|
"picocolors": "^1.1.1",
|
|
88
76
|
"rimraf": "^6.0.1",
|
|
89
|
-
"
|
|
77
|
+
"tiny-conventional-commits-parser": "^0.0.1",
|
|
90
78
|
"typescript": "^5.7.3",
|
|
79
|
+
"unbuild": "^3.3.1",
|
|
91
80
|
"vitest": "^3.0.4"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"lint": "eslint .",
|
|
84
|
+
"build": "unbuild",
|
|
85
|
+
"stub": "unbuild --stub",
|
|
86
|
+
"start": "esno src/cli/run.ts",
|
|
87
|
+
"test": "vitest",
|
|
88
|
+
"bumpp": "esno src/cli/run.ts",
|
|
89
|
+
"release": "pnpm run bumpp && pnpm publish",
|
|
90
|
+
"typecheck": "tsc --noEmit"
|
|
92
91
|
}
|
|
93
|
-
}
|
|
92
|
+
}
|