@vercel/frameworks
Advanced tools
Comparing version 0.3.2-canary.1 to 0.3.2-canary.2
@@ -18,2 +18,3 @@ import { Framework } from './types'; | ||
readonly website: "https://blitzjs.com"; | ||
readonly envPrefix: "NEXT_PUBLIC_"; | ||
readonly useRuntime: { | ||
@@ -55,2 +56,3 @@ readonly src: "package.json"; | ||
readonly sort: 1; | ||
readonly envPrefix: "NEXT_PUBLIC_"; | ||
readonly useRuntime: { | ||
@@ -96,2 +98,3 @@ readonly src: "package.json"; | ||
readonly sort: 2; | ||
readonly envPrefix: "GATSBY_"; | ||
readonly detectors: { | ||
@@ -421,2 +424,3 @@ readonly every: readonly [{ | ||
readonly website: "https://vuejs.org"; | ||
readonly envPrefix: "VUE_APP_"; | ||
readonly detectors: { | ||
@@ -716,2 +720,3 @@ readonly every: readonly [{ | ||
readonly website: "https://create-react-app.dev"; | ||
readonly envPrefix: "REACT_APP_"; | ||
readonly detectors: { | ||
@@ -982,2 +987,3 @@ readonly some: readonly [{ | ||
readonly website: "https://nuxtjs.org"; | ||
readonly envPrefix: "NUXT_ENV_"; | ||
readonly detectors: { | ||
@@ -1034,2 +1040,3 @@ readonly every: readonly [{ | ||
readonly website: "https://redwoodjs.com"; | ||
readonly envPrefix: "REDWOOD_ENV_"; | ||
readonly useRuntime: { | ||
@@ -1036,0 +1043,0 @@ readonly src: "package.json"; |
@@ -36,2 +36,3 @@ "use strict"; | ||
website: 'https://blitzjs.com', | ||
envPrefix: 'NEXT_PUBLIC_', | ||
useRuntime: { src: 'package.json', use: '@vercel/next' }, | ||
@@ -73,2 +74,3 @@ detectors: { | ||
sort: 1, | ||
envPrefix: 'NEXT_PUBLIC_', | ||
useRuntime: { src: 'package.json', use: '@vercel/next' }, | ||
@@ -116,2 +118,3 @@ detectors: { | ||
sort: 2, | ||
envPrefix: 'GATSBY_', | ||
detectors: { | ||
@@ -543,2 +546,3 @@ every: [ | ||
website: 'https://vuejs.org', | ||
envPrefix: 'VUE_APP_', | ||
detectors: { | ||
@@ -895,2 +899,3 @@ every: [ | ||
website: 'https://create-react-app.dev', | ||
envPrefix: 'REACT_APP_', | ||
detectors: { | ||
@@ -1182,2 +1187,3 @@ some: [ | ||
website: 'https://nuxtjs.org', | ||
envPrefix: 'NUXT_ENV_', | ||
detectors: { | ||
@@ -1238,2 +1244,3 @@ every: [ | ||
website: 'https://redwoodjs.com', | ||
envPrefix: 'REDWOOD_ENV_', | ||
useRuntime: { src: 'package.json', use: '@vercel/redwood' }, | ||
@@ -1240,0 +1247,0 @@ ignoreRuntimes: ['@vercel/node'], |
@@ -74,2 +74,7 @@ import { Route } from '@vercel/routing-utils'; | ||
/** | ||
* The environment variable prefix used to inline values into the browser bundle. | ||
* @example "NEXT_PUBLIC_" | ||
*/ | ||
envPrefix?: string; | ||
/** | ||
* Runtime configuration required to run the framework in Vercel | ||
@@ -76,0 +81,0 @@ */ |
{ | ||
"name": "@vercel/frameworks", | ||
"version": "0.3.2-canary.1", | ||
"version": "0.3.2-canary.2", | ||
"main": "./dist/frameworks.js", | ||
@@ -29,3 +29,3 @@ "types": "./dist/frameworks.d.ts", | ||
}, | ||
"gitHead": "e2106d12f605a9bdaa2ebef54f182ef150deecb9" | ||
"gitHead": "c2e7be80e869137d3dd482e017c9e65a1431225a" | ||
} |
119822
2954