i18next-cli 1.47.2 → 1.47.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/dist/cjs/cli.js +1 -1
- package/dist/cjs/locize.js +1 -1
- package/dist/esm/cli.js +1 -1
- package/dist/esm/locize.js +1 -1
- package/package.json +1 -1
package/dist/cjs/cli.js
CHANGED
|
@@ -31,7 +31,7 @@ const program = new commander.Command();
|
|
|
31
31
|
program
|
|
32
32
|
.name('i18next-cli')
|
|
33
33
|
.description('A unified, high-performance i18next CLI.')
|
|
34
|
-
.version('1.47.
|
|
34
|
+
.version('1.47.3'); // This string is replaced with the actual version at build time by rollup
|
|
35
35
|
// new: global config override option
|
|
36
36
|
program.option('-c, --config <path>', 'Path to i18next-cli config file (overrides detection)');
|
|
37
37
|
program
|
package/dist/cjs/locize.js
CHANGED
|
@@ -65,7 +65,7 @@ async function interactiveCredentialSetup(config) {
|
|
|
65
65
|
{
|
|
66
66
|
type: 'password',
|
|
67
67
|
name: 'apiKey',
|
|
68
|
-
message: '
|
|
68
|
+
message: 'Enter your Locize API key (Project settings → API → API Keys). If your project has no languages yet, use an API key with admin role.',
|
|
69
69
|
validate: input => !!input || 'API Key cannot be empty.',
|
|
70
70
|
},
|
|
71
71
|
{
|
package/dist/esm/cli.js
CHANGED
|
@@ -29,7 +29,7 @@ const program = new Command();
|
|
|
29
29
|
program
|
|
30
30
|
.name('i18next-cli')
|
|
31
31
|
.description('A unified, high-performance i18next CLI.')
|
|
32
|
-
.version('1.47.
|
|
32
|
+
.version('1.47.3'); // This string is replaced with the actual version at build time by rollup
|
|
33
33
|
// new: global config override option
|
|
34
34
|
program.option('-c, --config <path>', 'Path to i18next-cli config file (overrides detection)');
|
|
35
35
|
program
|
package/dist/esm/locize.js
CHANGED
|
@@ -63,7 +63,7 @@ async function interactiveCredentialSetup(config) {
|
|
|
63
63
|
{
|
|
64
64
|
type: 'password',
|
|
65
65
|
name: 'apiKey',
|
|
66
|
-
message: '
|
|
66
|
+
message: 'Enter your Locize API key (Project settings → API → API Keys). If your project has no languages yet, use an API key with admin role.',
|
|
67
67
|
validate: input => !!input || 'API Key cannot be empty.',
|
|
68
68
|
},
|
|
69
69
|
{
|