bumpp 10.2.0 → 10.2.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/dist/cli.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import process from 'node:process';
2
2
  import { x, NonZeroExitError } from 'tinyexec';
3
- import { l as loadBumpConfig, i as isReleaseType, b as bumpConfigDefaults, v as versionBump, P as ProgressEvent, s as symbols } from './shared/bumpp.Qdu0jgDY.mjs';
3
+ import { l as loadBumpConfig, i as isReleaseType, b as bumpConfigDefaults, v as versionBump, P as ProgressEvent, s as symbols } from './shared/bumpp.QyItIQce.mjs';
4
4
  import c from 'ansis';
5
5
  import cac from 'cac';
6
6
  import { valid } from 'semver';
@@ -24,7 +24,7 @@ var ExitCode = /* @__PURE__ */ ((ExitCode2) => {
24
24
  return ExitCode2;
25
25
  })(ExitCode || {});
26
26
 
27
- const version = "10.2.0";
27
+ const version = "10.2.1";
28
28
 
29
29
  async function parseArgs() {
30
30
  try {
package/dist/index.d.mts CHANGED
@@ -376,4 +376,5 @@ declare const bumpConfigDefaults: VersionBumpOptions;
376
376
  declare function loadBumpConfig(overrides?: Partial<VersionBumpOptions>, cwd?: string): Promise<VersionBumpOptions>;
377
377
  declare function defineConfig(config: Partial<VersionBumpOptions>): Partial<VersionBumpOptions>;
378
378
 
379
- export { type InterfaceOptions, NpmScript, ProgressEvent, type ReleaseType, type VersionBumpOptions, type VersionBumpProgress, type VersionBumpResults, bumpConfigDefaults, versionBump as default, defineConfig, loadBumpConfig, versionBump, versionBumpInfo };
379
+ export { NpmScript, ProgressEvent, bumpConfigDefaults, versionBump as default, defineConfig, loadBumpConfig, versionBump, versionBumpInfo };
380
+ export type { InterfaceOptions, ReleaseType, VersionBumpOptions, VersionBumpProgress, VersionBumpResults };
package/dist/index.d.ts CHANGED
@@ -376,4 +376,5 @@ declare const bumpConfigDefaults: VersionBumpOptions;
376
376
  declare function loadBumpConfig(overrides?: Partial<VersionBumpOptions>, cwd?: string): Promise<VersionBumpOptions>;
377
377
  declare function defineConfig(config: Partial<VersionBumpOptions>): Partial<VersionBumpOptions>;
378
378
 
379
- export { type InterfaceOptions, NpmScript, ProgressEvent, type ReleaseType, type VersionBumpOptions, type VersionBumpProgress, type VersionBumpResults, bumpConfigDefaults, versionBump as default, defineConfig, loadBumpConfig, versionBump, versionBumpInfo };
379
+ export { NpmScript, ProgressEvent, bumpConfigDefaults, versionBump as default, defineConfig, loadBumpConfig, versionBump, versionBumpInfo };
380
+ export type { InterfaceOptions, ReleaseType, VersionBumpOptions, VersionBumpProgress, VersionBumpResults };
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- import { v as versionBump } from './shared/bumpp.Qdu0jgDY.mjs';
2
- export { N as NpmScript, P as ProgressEvent, b as bumpConfigDefaults, d as defineConfig, l as loadBumpConfig, a as versionBumpInfo } from './shared/bumpp.Qdu0jgDY.mjs';
1
+ import { v as versionBump } from './shared/bumpp.QyItIQce.mjs';
2
+ export { N as NpmScript, P as ProgressEvent, b as bumpConfigDefaults, d as defineConfig, l as loadBumpConfig, a as versionBumpInfo } from './shared/bumpp.QyItIQce.mjs';
3
3
  import 'node:process';
4
4
  import 'args-tokenizer';
5
5
  import 'ansis';
@@ -6909,18 +6909,19 @@ function hasScript(manifest, script) {
6909
6909
  }
6910
6910
 
6911
6911
  async function updateFiles(operation) {
6912
- const { files } = operation.options;
6912
+ const { files, cwd } = operation.options;
6913
6913
  for (const relPath of files) {
6914
6914
  const modified = await updateFile(relPath, operation);
6915
+ const absPath = path.resolve(cwd, relPath);
6915
6916
  if (modified) {
6916
6917
  operation.update({
6917
6918
  event: ProgressEvent.FileUpdated,
6918
- updatedFiles: operation.state.updatedFiles.concat(relPath)
6919
+ updatedFiles: operation.state.updatedFiles.concat(absPath)
6919
6920
  });
6920
6921
  } else {
6921
6922
  operation.update({
6922
6923
  event: ProgressEvent.FileSkipped,
6923
- skippedFiles: operation.state.skippedFiles.concat(relPath)
6924
+ skippedFiles: operation.state.skippedFiles.concat(absPath)
6924
6925
  });
6925
6926
  }
6926
6927
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bumpp",
3
3
  "type": "module",
4
- "version": "10.2.0",
4
+ "version": "10.2.1",
5
5
  "description": "Bump version, commit changes, tag, and push to Git",
6
6
  "authors": [
7
7
  {
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "ansis": "^4.1.0",
55
55
  "args-tokenizer": "^0.3.0",
56
- "c12": "^3.0.4",
56
+ "c12": "^3.1.0",
57
57
  "cac": "^6.7.14",
58
58
  "escalade": "^3.2.0",
59
59
  "jsonc-parser": "^3.3.1",
@@ -64,18 +64,18 @@
64
64
  "yaml": "^2.8.0"
65
65
  },
66
66
  "devDependencies": {
67
- "@antfu/eslint-config": "^4.14.1",
68
- "@types/node": "^24.0.3",
67
+ "@antfu/eslint-config": "^5.0.0",
68
+ "@types/node": "^24.1.0",
69
69
  "@types/prompts": "^2.4.9",
70
70
  "@types/semver": "^7.7.0",
71
- "eslint": "^9.29.0",
71
+ "eslint": "^9.32.0",
72
72
  "prompts": "^2.4.2",
73
73
  "rimraf": "^6.0.1",
74
74
  "tiny-conventional-commits-parser": "^0.0.1",
75
75
  "tsx": "^4.20.3",
76
76
  "typescript": "^5.8.3",
77
- "unbuild": "^3.5.0",
78
- "vitest": "^3.2.3"
77
+ "unbuild": "^3.6.0",
78
+ "vitest": "^3.2.4"
79
79
  },
80
80
  "scripts": {
81
81
  "lint": "eslint .",