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 CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  Generate translation files for multiple languages
4
4
  ## Installation
5
- ### npm
6
- ```npm i auto-lang```
7
- ### yarn
8
- ```yarn install auto-lang```
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-lang",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Automatically create language json files for internationalization",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
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.2')
27
+ .version('1.0.3')
28
28
  .requiredOption('-f, --from <lang>', 'language to translate from')
29
29
  .requiredOption(
30
30
  '-t, --to <lang...>',