veryfront 0.1.143 → 0.1.144
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/esm/cli/shared/config.js +1 -1
- package/esm/deno.js +1 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/cli/shared/config.ts +1 -1
- package/src/deno.js +1 -1
- package/src/src/utils/version-constant.ts +1 -1
package/esm/cli/shared/config.js
CHANGED
|
@@ -115,8 +115,8 @@ async function resolveConfigBase(projectDir, env, interactive) {
|
|
|
115
115
|
throw new Error("Missing API token. Run 'veryfront login' or set VERYFRONT_API_TOKEN environment variable");
|
|
116
116
|
}
|
|
117
117
|
const projectSlug = env.projectSlug ??
|
|
118
|
-
resolveTenantProjectReference() ??
|
|
119
118
|
configFile?.projectSlug ??
|
|
119
|
+
resolveTenantProjectReference() ??
|
|
120
120
|
(await inferProjectSlug(dir));
|
|
121
121
|
if (!projectSlug) {
|
|
122
122
|
throw new Error("Could not determine project reference. Set VERYFRONT_PROJECT_SLUG, TENANT_PROJECT_SLUG, VERYFRONT_PROJECT_ID, or add projectSlug to veryfront.config.ts");
|
package/esm/deno.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.144";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
package/src/cli/shared/config.ts
CHANGED
|
@@ -137,8 +137,8 @@ async function resolveConfigBase(
|
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
const projectSlug = env.projectSlug ??
|
|
140
|
-
resolveTenantProjectReference() ??
|
|
141
140
|
configFile?.projectSlug ??
|
|
141
|
+
resolveTenantProjectReference() ??
|
|
142
142
|
(await inferProjectSlug(dir));
|
|
143
143
|
if (!projectSlug) {
|
|
144
144
|
throw new Error(
|
package/src/deno.js
CHANGED