@twin.org/merge-locales 0.0.1-next.2 → 0.0.1-next.4
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/bin/index.js +0 -0
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +1 -1
- package/package.json +2 -30
package/bin/index.js
CHANGED
|
File without changes
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -163,7 +163,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
163
163
|
return this.execute({
|
|
164
164
|
title: "TWIN Merge Locales",
|
|
165
165
|
appName: "merge-locales",
|
|
166
|
-
version: "0.0.1-next.
|
|
166
|
+
version: "0.0.1-next.4",
|
|
167
167
|
icon: "⚙️ ",
|
|
168
168
|
supportsEnvFiles: false
|
|
169
169
|
}, localesDirectory ?? path.join(path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)))), "../locales"), argv);
|
package/dist/esm/index.mjs
CHANGED
|
@@ -160,7 +160,7 @@ class CLI extends CLIBase {
|
|
|
160
160
|
return this.execute({
|
|
161
161
|
title: "TWIN Merge Locales",
|
|
162
162
|
appName: "merge-locales",
|
|
163
|
-
version: "0.0.1-next.
|
|
163
|
+
version: "0.0.1-next.4",
|
|
164
164
|
icon: "⚙️ ",
|
|
165
165
|
supportsEnvFiles: false
|
|
166
166
|
}, localesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), "../locales"), argv);
|
package/docs/changelog.md
CHANGED
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.4",
|
|
4
4
|
"description": "Tool to merge locale files from all dependencies",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,41 +13,13 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"clean": "rimraf dist coverage",
|
|
18
|
-
"build": "tspc",
|
|
19
|
-
"merge-locales": "copyfiles locales/en.json dist && npm run bundle:esm && node bin/index.js",
|
|
20
|
-
"test": "vitest --run --config ./vitest.config.ts --no-cache",
|
|
21
|
-
"coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
|
|
22
|
-
"bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
|
|
23
|
-
"bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
|
|
24
|
-
"bundle": "npm run bundle:esm && npm run bundle:cjs",
|
|
25
|
-
"docs:clean": "rimraf docs/reference",
|
|
26
|
-
"docs:generate": "typedoc",
|
|
27
|
-
"docs": "npm run docs:clean && npm run docs:generate",
|
|
28
|
-
"dist": "npm run clean && npm run build && npm run merge-locales && npm run test && npm run bundle && npm run docs"
|
|
29
|
-
},
|
|
30
16
|
"dependencies": {
|
|
31
17
|
"@twin.org/cli-core": "next",
|
|
32
18
|
"@twin.org/core": "next",
|
|
33
|
-
"@twin.org/nameof": "0.0.1-next.
|
|
19
|
+
"@twin.org/nameof": "0.0.1-next.4",
|
|
34
20
|
"commander": "12.1.0",
|
|
35
21
|
"glob": "11.0.0"
|
|
36
22
|
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@twin.org/nameof-transformer": "0.0.1-next.2",
|
|
39
|
-
"@types/node": "22.5.5",
|
|
40
|
-
"@vitest/coverage-v8": "2.1.1",
|
|
41
|
-
"copyfiles": "2.4.1",
|
|
42
|
-
"rimraf": "6.0.1",
|
|
43
|
-
"rollup": "4.21.3",
|
|
44
|
-
"rollup-plugin-typescript2": "0.36.0",
|
|
45
|
-
"ts-patch": "3.2.1",
|
|
46
|
-
"typedoc": "0.26.7",
|
|
47
|
-
"typedoc-plugin-markdown": "4.2.7",
|
|
48
|
-
"typescript": "5.6.2",
|
|
49
|
-
"vitest": "2.1.1"
|
|
50
|
-
},
|
|
51
23
|
"main": "./dist/cjs/index.cjs",
|
|
52
24
|
"module": "./dist/esm/index.mjs",
|
|
53
25
|
"types": "./dist/types/index.d.ts",
|