diff-mindustry-bundles 1.0.0 → 1.0.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/README.md +13 -10
- package/build/index.js +37 -3500
- package/package.json +16 -5
- package/README.template.md +0 -29
package/README.md
CHANGED
|
@@ -25,21 +25,24 @@ bunx diff-mindustry-bundles bundle_de
|
|
|
25
25
|
|
|
26
26
|
Available options:
|
|
27
27
|
```bash
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
DESCRIPTION
|
|
30
29
|
A handy utility to view missing/extra/untranslated keys between bundles.
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
USAGE
|
|
32
|
+
diff-mindustry-bundles [options] <top-bundle> [base-bundle]
|
|
33
|
+
|
|
34
|
+
ARGUMENTS
|
|
35
|
+
<top-bundle> Bundle with your localization (no extension). For
|
|
34
36
|
example: 'bundle_ru'
|
|
35
|
-
base-bundle
|
|
37
|
+
[base-bundle] Bundle to compare with. (default: "bundle")
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
OPTIONS
|
|
38
40
|
-V, --version output the version number
|
|
39
|
-
--base-dir <dirpath> Path to the directory containing Mindustry
|
|
40
|
-
".")
|
|
41
|
+
--base-dir <dirpath> Path to the directory containing Mindustry
|
|
41
42
|
--bundles-dir <dirpath> Path to the directory containing bundles. Relative to
|
|
42
|
-
the base directory.
|
|
43
|
-
|
|
43
|
+
the base directory.
|
|
44
|
+
|
|
45
|
+
Version: 1.0.2
|
|
46
|
+
Repository: https://github.com/murolem/diff-mindustry-bundles
|
|
44
47
|
|
|
45
48
|
```
|