bumpp 7.0.0 → 7.2.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 +0 -0
- package/dist/{chunk-TILHCTE7.mjs → chunk-2TP63A7S.mjs} +291 -192
- package/dist/cli/index.d.ts +8 -0
- package/dist/cli/index.js +783 -40
- package/dist/cli/index.mjs +44 -33
- package/dist/index.d.ts +219 -4
- package/dist/index.js +751 -6
- package/dist/index.mjs +11 -4
- package/package.json +27 -27
- package/dist/chunk-KWGIMQJU.js +0 -642
package/dist/index.mjs
CHANGED
|
@@ -2,14 +2,21 @@ import {
|
|
|
2
2
|
NpmScript,
|
|
3
3
|
ProgressEvent,
|
|
4
4
|
ReleaseType,
|
|
5
|
+
init_esm_shims,
|
|
5
6
|
versionBump
|
|
6
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-2TP63A7S.mjs";
|
|
8
|
+
|
|
9
|
+
// src/index.ts
|
|
10
|
+
init_esm_shims();
|
|
11
|
+
|
|
12
|
+
// src/types/version-bump-options.ts
|
|
13
|
+
init_esm_shims();
|
|
14
|
+
|
|
15
|
+
// src/types/version-bump-results.ts
|
|
16
|
+
init_esm_shims();
|
|
7
17
|
|
|
8
18
|
// src/index.ts
|
|
9
19
|
var src_default = versionBump;
|
|
10
|
-
if (typeof module === "object" && typeof module.exports === "object") {
|
|
11
|
-
module.exports = Object.assign(module.exports.default, module.exports);
|
|
12
|
-
}
|
|
13
20
|
export {
|
|
14
21
|
NpmScript,
|
|
15
22
|
ProgressEvent,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bumpp",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "Automatically (or with prompts) bump your version number, commit changes, tag, and push to Git",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"version",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"main": "dist/index.js",
|
|
28
28
|
"types": "dist/index.d.ts",
|
|
29
29
|
"bin": {
|
|
30
|
-
"
|
|
30
|
+
"bumpp": "bin/bumpp.js"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"bin",
|
|
@@ -36,47 +36,47 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"clean": "rimraf .nyc_output coverage dist",
|
|
38
38
|
"lint": "eslint src test",
|
|
39
|
-
"build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts",
|
|
39
|
+
"build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
|
|
40
40
|
"watch": "npm run build -- --watch src",
|
|
41
|
+
"start": "esno src/cli/dev.ts",
|
|
41
42
|
"test": "mocha && npm run lint",
|
|
42
43
|
"coverage": "nyc node_modules/mocha/bin/mocha",
|
|
43
44
|
"upgrade": "npm-check -u && npm audit fix",
|
|
44
|
-
"
|
|
45
|
+
"bumpp": "esno src/cli/run.ts --tag --push --all",
|
|
45
46
|
"prepublishOnly": "npm run clean && npm run build",
|
|
46
|
-
"release": "npm run
|
|
47
|
+
"release": "npm run bumpp && npm publish"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
50
|
"@jsdevtools/chai-exec": "^2.1.1",
|
|
50
51
|
"@jsdevtools/eslint-config": "^1.1.4",
|
|
51
|
-
"@types/chai": "^4.2.
|
|
52
|
-
"@types/command-line-args": "^5.
|
|
53
|
-
"@types/
|
|
54
|
-
"@types/
|
|
55
|
-
"@types/
|
|
56
|
-
"@types/
|
|
57
|
-
"@types/semver": "^7.3.
|
|
58
|
-
"chai": "^4.
|
|
59
|
-
"
|
|
60
|
-
"
|
|
52
|
+
"@types/chai": "^4.2.21",
|
|
53
|
+
"@types/command-line-args": "^5.2.0",
|
|
54
|
+
"@types/inquirer": "^7.3.3",
|
|
55
|
+
"@types/mocha": "^8.2.3",
|
|
56
|
+
"@types/node": "^14.17.14",
|
|
57
|
+
"@types/prompts": "^2.0.14",
|
|
58
|
+
"@types/semver": "^7.3.8",
|
|
59
|
+
"chai": "^4.3.4",
|
|
60
|
+
"detect-indent": "^7.0.0",
|
|
61
|
+
"detect-newline": "^3.1.0",
|
|
62
|
+
"eslint": "^7.32.0",
|
|
61
63
|
"esno": "^0.9.1",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
+
"log-symbols": "^4.1.0",
|
|
65
|
+
"mocha": "^8.4.0",
|
|
66
|
+
"npm-check": "^5.9.2",
|
|
64
67
|
"nyc": "^15.1.0",
|
|
65
68
|
"rimraf": "^3.0.2",
|
|
66
|
-
"shx": "^0.3.2",
|
|
67
69
|
"strip-ansi": "^6.0.0",
|
|
68
|
-
"tsup": "^
|
|
69
|
-
"typescript": "^4.
|
|
70
|
+
"tsup": "^5.11.9",
|
|
71
|
+
"typescript": "^4.4.2"
|
|
70
72
|
},
|
|
71
73
|
"dependencies": {
|
|
72
74
|
"@jsdevtools/ez-spawn": "^3.0.4",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"log-symbols": "^4.0.0",
|
|
79
|
-
"semver": "^7.3.2"
|
|
75
|
+
"chalk": "^4.1.2",
|
|
76
|
+
"command-line-args": "^5.2.0",
|
|
77
|
+
"globby": "^11.0.4",
|
|
78
|
+
"prompts": "^2.4.1",
|
|
79
|
+
"semver": "^7.3.5"
|
|
80
80
|
},
|
|
81
81
|
"engines": {
|
|
82
82
|
"node": ">=10"
|