bumpp 9.10.2 → 9.11.1

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/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "bumpp",
3
- "version": "9.10.2",
3
+ "type": "module",
4
+ "version": "9.11.1",
4
5
  "packageManager": "pnpm@9.15.4",
5
6
  "description": "Bump version, commit changes, tag, and push to Git",
6
7
  "author": {
@@ -28,12 +29,12 @@
28
29
  "exports": {
29
30
  ".": {
30
31
  "types": "./dist/index.d.ts",
31
- "import": "./dist/index.mjs",
32
- "require": "./dist/index.js"
32
+ "import": "./dist/index.js",
33
+ "require": "./dist/index.cjs"
33
34
  }
34
35
  },
35
36
  "main": "dist/index.js",
36
- "module": "dist/index.mjs",
37
+ "module": "dist/index.js",
37
38
  "types": "dist/index.d.ts",
38
39
  "bin": {
39
40
  "bumpp": "bin/bumpp.js"
@@ -49,7 +50,7 @@
49
50
  "clean": "rimraf .nyc_output coverage dist",
50
51
  "lint": "eslint .",
51
52
  "lint:fix": "eslint --fix .",
52
- "build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
53
+ "build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts --clean",
53
54
  "watch": "npm run build -- --watch src",
54
55
  "start": "esno src/cli/run.ts",
55
56
  "test": "vitest",
@@ -68,17 +69,18 @@
68
69
  "package-manager-detector": "^0.2.8",
69
70
  "prompts": "^2.4.2",
70
71
  "semver": "^7.6.3",
72
+ "tiny-conventional-commits-parser": "^0.0.1",
71
73
  "tinyexec": "^0.3.2",
72
74
  "tinyglobby": "^0.2.10"
73
75
  },
74
76
  "devDependencies": {
75
- "@antfu/eslint-config": "^3.16.0",
77
+ "@antfu/eslint-config": "^4.0.0",
76
78
  "@types/js-yaml": "^4.0.9",
77
- "@types/node": "^22.10.7",
79
+ "@types/node": "^22.10.10",
78
80
  "@types/prompts": "^2.4.9",
79
81
  "@types/semver": "^7.5.8",
80
82
  "args-tokenizer": "^0.3.0",
81
- "eslint": "^9.18.0",
83
+ "eslint": "^9.19.0",
82
84
  "esno": "^4.8.0",
83
85
  "log-symbols": "^7.0.0",
84
86
  "npm-check": "^6.0.1",
@@ -86,6 +88,6 @@
86
88
  "rimraf": "^6.0.1",
87
89
  "tsup": "^8.3.5",
88
90
  "typescript": "^5.7.3",
89
- "vitest": "^3.0.3"
91
+ "vitest": "^3.0.4"
90
92
  }
91
93
  }
package/dist/index.mjs DELETED
@@ -1,23 +0,0 @@
1
- import {createRequire as __createRequire} from 'module';var require=__createRequire(import.meta.url);
2
- import {
3
- NpmScript,
4
- ProgressEvent,
5
- bumpConfigDefaults,
6
- defineConfig,
7
- loadBumpConfig,
8
- versionBump,
9
- versionBumpInfo
10
- } from "./chunk-W5LZZJWM.mjs";
11
-
12
- // src/index.ts
13
- var src_default = versionBump;
14
- export {
15
- NpmScript,
16
- ProgressEvent,
17
- bumpConfigDefaults,
18
- src_default as default,
19
- defineConfig,
20
- loadBumpConfig,
21
- versionBump,
22
- versionBumpInfo
23
- };
File without changes
File without changes