auto-lang 1.0.2 → 1.0.3
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/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Generate translation files for multiple languages
|
4
4
|
## Installation
|
5
|
-
### npm
|
6
|
-
|
7
|
-
### yarn
|
8
|
-
|
5
|
+
### Using npm
|
6
|
+
```$ npm install auto-lang```
|
7
|
+
### Using yarn
|
8
|
+
```$ yarn add auto-lang```
|
9
9
|
|
10
10
|
## Usage
|
11
11
|
Run `auto-lang [options]`
|
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -24,7 +24,7 @@ if (nodeMajVer < 14) {
|
|
24
24
|
program
|
25
25
|
.name('auto-lang')
|
26
26
|
.description('Generate translation files for multiple languages')
|
27
|
-
.version('1.0.
|
27
|
+
.version('1.0.3')
|
28
28
|
.requiredOption('-f, --from <lang>', 'language to translate from')
|
29
29
|
.requiredOption(
|
30
30
|
'-t, --to <lang...>',
|