@twin.org/merge-locales 0.0.1-next.23 → 0.0.1-next.25

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.
@@ -175,7 +175,7 @@ class CLI extends cliCore.CLIBase {
175
175
  return this.execute({
176
176
  title: "TWIN Merge Locales",
177
177
  appName: "merge-locales",
178
- version: "0.0.1-next.23", // x-release-please-version
178
+ version: "0.0.1-next.25", // x-release-please-version
179
179
  icon: "⚙️ ",
180
180
  supportsEnvFiles: false,
181
181
  overrideOutputWidth: options?.overrideOutputWidth
@@ -172,7 +172,7 @@ class CLI extends CLIBase {
172
172
  return this.execute({
173
173
  title: "TWIN Merge Locales",
174
174
  appName: "merge-locales",
175
- version: "0.0.1-next.23", // x-release-please-version
175
+ version: "0.0.1-next.25", // x-release-please-version
176
176
  icon: "⚙️ ",
177
177
  supportsEnvFiles: false,
178
178
  overrideOutputWidth: options?.overrideOutputWidth
@@ -79,6 +79,8 @@
79
79
  "array": "Property \"{property}\" must be an array, it is \"{value}\"",
80
80
  "arrayValue": "Property \"{property}\" must be an array with at least one item",
81
81
  "arrayOneOf": "Property \"{property}\" must be one of [{options}], it is \"{value}\"",
82
+ "arrayStartsWith": "Property \"{property}\" must be an array starting with [{startValues}], it is \"{value}\"",
83
+ "arrayEndsWith": "Property \"{property}\" must be an array ending with [{endValues}], it is \"{value}\"",
82
84
  "uint8Array": "Property \"{property}\" must be a Uint8Array, it is \"{value}\"",
83
85
  "function": "Property \"{property}\" must be a function, it is \"{value}\"",
84
86
  "urn": "Property \"{property}\" must be a Urn formatted string, it is \"{value}\"",
package/docs/changelog.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @twin.org/ts-to-openapi - Changelog
2
2
 
3
+ ## [0.0.1-next.25](https://github.com/twinfoundation/tools/compare/merge-locales-v0.0.1-next.24...merge-locales-v0.0.1-next.25) (2025-06-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * add ts-to-schema overrides ([3c54504](https://github.com/twinfoundation/tools/commit/3c5450468eb998204a75576b7791a7ca4027da62))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nameof bumped from 0.0.1-next.24 to 0.0.1-next.25
16
+ * devDependencies
17
+ * @twin.org/nameof-transformer bumped from 0.0.1-next.24 to 0.0.1-next.25
18
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.24 to 0.0.1-next.25
19
+
20
+ ## [0.0.1-next.24](https://github.com/twinfoundation/tools/compare/merge-locales-v0.0.1-next.23...merge-locales-v0.0.1-next.24) (2025-06-05)
21
+
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ * **merge-locales:** Synchronize repo versions
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @twin.org/nameof bumped from 0.0.1-next.23 to 0.0.1-next.24
33
+ * devDependencies
34
+ * @twin.org/nameof-transformer bumped from 0.0.1-next.23 to 0.0.1-next.24
35
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.23 to 0.0.1-next.24
36
+
3
37
  ## [0.0.1-next.23](https://github.com/twinfoundation/tools/compare/merge-locales-v0.0.1-next.22...merge-locales-v0.0.1-next.23) (2025-06-03)
4
38
 
5
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/merge-locales",
3
- "version": "0.0.1-next.23",
3
+ "version": "0.0.1-next.25",
4
4
  "description": "Tool to merge locale files from all dependencies",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,9 +16,9 @@
16
16
  "dependencies": {
17
17
  "@twin.org/cli-core": "next",
18
18
  "@twin.org/core": "next",
19
- "@twin.org/nameof": "0.0.1-next.23",
20
- "commander": "13.1.0",
21
- "glob": "11.0.1"
19
+ "@twin.org/nameof": "0.0.1-next.25",
20
+ "commander": "14.0.0",
21
+ "glob": "11.0.2"
22
22
  },
23
23
  "main": "./dist/cjs/index.cjs",
24
24
  "module": "./dist/esm/index.mjs",