@kopynator/cli 1.0.13 → 1.0.14

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/index.js CHANGED
@@ -333,7 +333,7 @@ async function syncCommand() {
333
333
  return;
334
334
  }
335
335
  const syncConfig = await getSyncConfig();
336
- const baseUrl = config.baseUrl || "http://localhost:7300/api/tokens";
336
+ const baseUrl = config.baseUrl || "https://api.kopynator.com/api/tokens";
337
337
  const token = config.apiKey;
338
338
  const spinner = (0, import_ora.default)("\u{1F4E1} Connecting to Kopynator Cloud...").start();
339
339
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopynator/cli",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "CLI tool for Kopynator - The i18n management solution",
5
5
  "bin": {
6
6
  "kopynator": "dist/index.js"
@@ -193,7 +193,7 @@ export async function syncCommand() {
193
193
  // Get sync configuration
194
194
  const syncConfig = await getSyncConfig();
195
195
 
196
- const baseUrl = config.baseUrl || 'http://localhost:7300/api/tokens';
196
+ const baseUrl = config.baseUrl || 'https://api.kopynator.com/api/tokens';
197
197
  const token = config.apiKey;
198
198
 
199
199
  const spinner = ora('📡 Connecting to Kopynator Cloud...').start();