@deot/dev-releaser 2.6.0 → 2.6.2

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/index.cjs CHANGED
@@ -489,6 +489,8 @@ const run = (options) => devShared.Utils.autoCatch(async () => {
489
489
  ...options
490
490
  };
491
491
  const locals = devShared.Locals.impl();
492
+ options.forceUpdateName = devShared.Locals.getRealPackageName(options.forceUpdateName);
493
+ options.skipUpdateName = devShared.Locals.getRealPackageName(options.skipUpdateName);
492
494
  if (options.dryRun) {
493
495
  devShared.Logger.log(
494
496
  chalk.magenta(`DRY RUN: `) + "No files will be modified."
package/dist/index.js CHANGED
@@ -466,6 +466,8 @@ const run = (options) => Utils.autoCatch(async () => {
466
466
  ...options
467
467
  };
468
468
  const locals = Locals.impl();
469
+ options.forceUpdateName = Locals.getRealPackageName(options.forceUpdateName);
470
+ options.skipUpdateName = Locals.getRealPackageName(options.skipUpdateName);
469
471
  if (options.dryRun) {
470
472
  Logger.log(
471
473
  chalk.magenta(`DRY RUN: `) + "No files will be modified."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-releaser",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,11 +19,11 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@deot/dev-shared": "^2.6.0",
22
+ "@deot/dev-shared": "^2.6.2",
23
23
  "conventional-commits-parser": "^5.0.0",
24
24
  "chalk": "^5.3.0",
25
25
  "fs-extra": "^11.1.1",
26
- "inquirer": "^9.2.11",
26
+ "inquirer": "^9.2.12",
27
27
  "inquirer-autocomplete-prompt": "^3.0.1",
28
28
  "semver": "^7.5.4"
29
29
  },