@twin.org/merge-locales 0.0.1-next.18 → 0.0.1-next.19
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +3 -0
- package/docs/changelog.md +17 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -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.
|
|
178
|
+
version: "0.0.1-next.19", // x-release-please-version
|
|
179
179
|
icon: "⚙️ ",
|
|
180
180
|
supportsEnvFiles: false,
|
|
181
181
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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.
|
|
175
|
+
version: "0.0.1-next.19", // x-release-please-version
|
|
176
176
|
icon: "⚙️ ",
|
|
177
177
|
supportsEnvFiles: false,
|
|
178
178
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -114,6 +114,9 @@
|
|
|
114
114
|
"base58": {
|
|
115
115
|
"invalidCharacter": "Data contains a character \"{invalidCharacter}\" which is not in the charset"
|
|
116
116
|
},
|
|
117
|
+
"jsonHelper": {
|
|
118
|
+
"failedPatch": "Failed to patch the JSON object, patch index \"{index}\" failed"
|
|
119
|
+
},
|
|
117
120
|
"bip39": {
|
|
118
121
|
"missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
|
|
119
122
|
"checksumMismatch": "The checksum does not match \"{newChecksum}\" != \"{checksumBits}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @twin.org/ts-to-openapi - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.19](https://github.com/twinfoundation/tools/compare/merge-locales-v0.0.1-next.18...merge-locales-v0.0.1-next.19) (2025-03-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **merge-locales:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/nameof bumped from 0.0.1-next.18 to 0.0.1-next.19
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.18 to 0.0.1-next.19
|
|
18
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.18 to 0.0.1-next.19
|
|
19
|
+
|
|
3
20
|
## v0.0.1-next.18
|
|
4
21
|
|
|
5
22
|
- Initial Release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/merge-locales",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.19",
|
|
4
4
|
"description": "Tool to merge locale files from all dependencies",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/cli-core": "next",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
|
-
"@twin.org/nameof": "0.0.1-next.
|
|
19
|
+
"@twin.org/nameof": "0.0.1-next.19",
|
|
20
20
|
"commander": "13.1.0",
|
|
21
21
|
"glob": "11.0.1"
|
|
22
22
|
},
|