@twin.org/validate-locales 0.0.2-next.22 → 0.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 +4 -4
- package/bin/index.js +1 -1
- package/dist/es/cli.js +37 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/{esm/index.mjs → es/commands/validateLocales.js} +136 -65
- package/dist/es/commands/validateLocales.js.map +1 -0
- package/dist/es/index.js +5 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/ILocaleDictionaryEntry.js +2 -0
- package/dist/es/models/ILocaleDictionaryEntry.js.map +1 -0
- package/dist/es/models/ILocaleFailure.js +2 -0
- package/dist/es/models/ILocaleFailure.js.map +1 -0
- package/dist/locales/en.json +5 -2
- package/dist/types/index.d.ts +2 -2
- package/docs/changelog.md +931 -5
- package/docs/reference/classes/CLI.md +66 -2
- package/docs/usage.md +35 -0
- package/package.json +15 -17
- package/dist/cjs/index.cjs +0 -805
- package/docs/examples.md +0 -15
package/docs/examples.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# @twin.org/validate-locales - Examples
|
|
2
|
-
|
|
3
|
-
## Command Line Tool
|
|
4
|
-
|
|
5
|
-
First install the tool with the following script.
|
|
6
|
-
|
|
7
|
-
```shell
|
|
8
|
-
npm install @twin.org/validate-locales
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
You can then run the tool from the command line e.g.
|
|
12
|
-
|
|
13
|
-
```shell
|
|
14
|
-
validate-locales
|
|
15
|
-
```
|