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 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.2'); // This string is replaced with the actual version at build time by rollup
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
@@ -65,7 +65,7 @@ async function interactiveCredentialSetup(config) {
65
65
  {
66
66
  type: 'password',
67
67
  name: 'apiKey',
68
- message: 'What is your Locize API key? (Create or use one in your project settings > "API Keys")',
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.2'); // This string is replaced with the actual version at build time by rollup
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
@@ -63,7 +63,7 @@ async function interactiveCredentialSetup(config) {
63
63
  {
64
64
  type: 'password',
65
65
  name: 'apiKey',
66
- message: 'What is your Locize API key? (Create or use one in your project settings > "API Keys")',
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
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18next-cli",
3
- "version": "1.47.2",
3
+ "version": "1.47.3",
4
4
  "description": "A unified, high-performance i18next CLI.",
5
5
  "type": "module",
6
6
  "bin": {