@localizeaso/cli 0.1.0-preview.4 → 0.1.0-preview.5
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/package.json
CHANGED
package/scripts/localizeaso.mjs
CHANGED
|
@@ -1104,7 +1104,7 @@ function configuredToken(env = process.env) {
|
|
|
1104
1104
|
|
|
1105
1105
|
function stagingUrls() {
|
|
1106
1106
|
return {
|
|
1107
|
-
backend: 'https://api.staging.localizeaso.com
|
|
1107
|
+
backend: 'https://api.staging.localizeaso.com',
|
|
1108
1108
|
dashboard: 'https://dash.staging.localizeaso.com',
|
|
1109
1109
|
};
|
|
1110
1110
|
}
|
package/scripts/review-agent.mjs
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
|
|
28
28
|
const LOCAL_BACKEND_URL = 'http://localhost:8787';
|
|
29
29
|
const LOCAL_DASHBOARD_URL = 'http://localhost:5174';
|
|
30
|
-
const STAGING_BACKEND_URL = 'https://api.staging.localizeaso.com
|
|
30
|
+
const STAGING_BACKEND_URL = 'https://api.staging.localizeaso.com';
|
|
31
31
|
const STAGING_DASHBOARD_URL = 'https://dash.staging.localizeaso.com';
|
|
32
32
|
const DEFAULT_CLI_CONFIG_PATH = path.join(homedir(), '.localizeaso', 'config.json');
|
|
33
33
|
const SAFE_SHELL_TOKEN_RE = /^[A-Za-z0-9_./:@%+=,-]+$/;
|