@swell/cli 2.0.1-alpha.10 → 2.0.1-alpha.11
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/lib/constants.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/lib/constants.js
CHANGED
|
@@ -13,5 +13,5 @@ export function getAdminApiBaseUrl(storeId) {
|
|
|
13
13
|
return ADMIN_API_BASE_URL.replace('${STORE_ID}', storeId);
|
|
14
14
|
}
|
|
15
15
|
export function getLoginHost(storeId) {
|
|
16
|
-
return LOGIN_HOST.replace('${STORE_ID}', storeId || '
|
|
16
|
+
return LOGIN_HOST.replace('${STORE_ID}', storeId || 'login');
|
|
17
17
|
}
|
package/oclif.manifest.json
CHANGED