veryfront 0.1.1035 → 0.1.1036

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/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.1035",
3
+ "version": "0.1.1036",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "minimumDependencyAge": {
@@ -400,7 +400,7 @@ export function createProxyHandler(options) {
400
400
  }));
401
401
  if (projectSlug && !token) {
402
402
  const status = parseStatusFromError(tokenFetchError);
403
- if (status === 404) {
403
+ if (status === 404 || isMissingCustomDomainProjectError(tokenFetchError)) {
404
404
  if (scope === "preview") {
405
405
  logger?.info("Preview project not found", { projectSlug, host });
406
406
  return createProjectNotFoundProxyContext(base, "Preview project not found");
@@ -39,7 +39,7 @@ export async function resolveProxyRequestToken(options) {
39
39
  }
40
40
  catch (error) {
41
41
  tokenFetchError = error;
42
- if (!(customDomain && isMissingCustomDomainProjectError(error))) {
42
+ if (!isMissingCustomDomainProjectError(error)) {
43
43
  logger?.error(tokenFetchErrorMessage, error, {
44
44
  projectSlug,
45
45
  customDomain,
@@ -1,3 +1,3 @@
1
1
  /** Shared version value. */
2
- export declare const VERSION = "0.1.1035";
2
+ export declare const VERSION = "0.1.1036";
3
3
  //# sourceMappingURL=version-constant.d.ts.map
@@ -1,4 +1,4 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
3
  /** Shared version value. */
4
- export const VERSION = "0.1.1035";
4
+ export const VERSION = "0.1.1036";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veryfront",
3
- "version": "0.1.1035",
3
+ "version": "0.1.1036",
4
4
  "description": "The simplest way to build AI-powered apps",
5
5
  "keywords": [
6
6
  "react",
@@ -330,9 +330,9 @@
330
330
  "@types/react": "19.2.14",
331
331
  "@types/react-dom": "19.2.3",
332
332
  "ws": "8.21.0",
333
- "@veryfront/ext-bundler-esbuild": "0.1.1035",
334
- "@veryfront/ext-content-mdx": "0.1.1035",
335
- "@veryfront/ext-css-tailwind": "0.1.1035"
333
+ "@veryfront/ext-bundler-esbuild": "0.1.1036",
334
+ "@veryfront/ext-content-mdx": "0.1.1036",
335
+ "@veryfront/ext-css-tailwind": "0.1.1036"
336
336
  },
337
337
  "devDependencies": {
338
338
  "@types/node": "20.9.0"