devflare 1.0.0-next.56 → 1.0.0-next.58
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/_chunks/{account-CLBi_Mru.js → account-Cm4a0Rpt.js} +1 -1
- package/dist/_chunks/{build-BmU4QXpJ.js → build-Btye9WVX.js} +1 -1
- package/dist/_chunks/{build-artifacts-vCA-nNnA.js → build-artifacts-Bthg6ZA4.js} +3 -3
- package/dist/_chunks/{cli-WcDI1IIj.js → cli-TjsvOgl-.js} +12 -12
- package/dist/_chunks/{command-utils-BmXpYCvT.js → command-utils-q7afD0vr.js} +1 -1
- package/dist/_chunks/{compiler-GkxB8ZUj.js → compiler-CWBMlRiD.js} +4 -5
- package/dist/_chunks/{config-Bnpyw_1J.js → config-DLCZznEQ.js} +2 -2
- package/dist/_chunks/{config-path-Buks8SUu.js → config-path-BLNgjwZL.js} +1 -1
- package/dist/_chunks/{deploy-AnCl_CPv.js → deploy-D3h8QuT2.js} +5 -5
- package/dist/_chunks/{dev-4lqSTFzA.js → dev-DfdgmN71.js} +6 -3
- package/dist/_chunks/{doctor-DA1UOSH1.js → doctor-BITijwEH.js} +2 -2
- package/dist/_chunks/{family-DBzuCYV3.js → family-Bsyfu8O3.js} +1 -1
- package/dist/_chunks/{loader-CyjdvvlO.js → loader-CrY7iWEO.js} +15 -0
- package/dist/_chunks/{login-BvE5AQ3S.js → login-tf9xOk7g.js} +1 -1
- package/dist/_chunks/{preview-resources-BnFFwUyD.js → preview-resources-C0oa8PMU.js} +1 -1
- package/dist/_chunks/{previews-C-9NgWxZ.js → previews-BSxNVnRa.js} +7 -8
- package/dist/_chunks/{productions-QBmNDsqU.js → productions-BLe9BtUW.js} +3 -3
- package/dist/_chunks/{routes-ExleD5OL.js → routes-Cs44gHeZ.js} +1 -1
- package/dist/_chunks/{tail-CUpyZMGo.js → tail-D-JbXjgl.js} +2 -2
- package/dist/_chunks/{types-B_UiXmS4.js → types-qm3mkvYf.js} +2 -2
- package/dist/_chunks/{vite-CYGdVw1Z.js → vite-D-dP3R17.js} +3 -3
- package/dist/_chunks/{worker-COOCRYPj.js → worker-DeERpsf0.js} +3 -3
- package/dist/browser.d.ts +48 -0
- package/dist/browser.d.ts.map +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli/preview-bindings.d.ts.map +1 -1
- package/dist/config/compiler/bindings.d.ts.map +1 -1
- package/dist/config/compiler/types.d.ts +0 -1
- package/dist/config/compiler/types.d.ts.map +1 -1
- package/dist/config/compiler.d.ts.map +1 -1
- package/dist/config/schema-bindings.d.ts +36 -6
- package/dist/config/schema-bindings.d.ts.map +1 -1
- package/dist/config/schema-env.d.ts +30 -0
- package/dist/config/schema-env.d.ts.map +1 -1
- package/dist/config/schema-runtime.d.ts +12 -0
- package/dist/config/schema-runtime.d.ts.map +1 -1
- package/dist/config/schema-types-runtime-server.d.ts +37 -0
- package/dist/config/schema-types-runtime-server.d.ts.map +1 -1
- package/dist/config/schema.d.ts +57 -0
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/dev-server/miniflare-dev-config.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/sveltekit/index.js +1 -1
- package/dist/test/index.js +2 -2
- package/dist/vite/index.js +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { a as setGlobalDefaultAccountId, i as getWorkspaceAccountId, o as setWor
|
|
|
3
3
|
import { t as account } from "./cloudflare-BaloqI3H.js";
|
|
4
4
|
import { a as DIM, c as RESET, i as CYAN_BOLD, r as CYAN } from "./colors-DiK6wPJ5.js";
|
|
5
5
|
import { c as formatCommand, d as green, f as logLine, g as yellow, h as whiteDim, l as formatLabelValue, n as bold, o as dim, p as logTable, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
6
|
-
import { n as getConfiguredAccountId } from "./command-utils-
|
|
6
|
+
import { n as getConfiguredAccountId } from "./command-utils-q7afD0vr.js";
|
|
7
7
|
//#region src/cli/commands/account.ts
|
|
8
8
|
const ACCOUNT_SUBCOMMANDS = [
|
|
9
9
|
"info",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as cyanBold, f as logLine, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
2
|
-
import { t as prepareBuildArtifacts } from "./build-artifacts-
|
|
2
|
+
import { t as prepareBuildArtifacts } from "./build-artifacts-Bthg6ZA4.js";
|
|
3
3
|
//#region src/cli/commands/build.ts
|
|
4
4
|
async function runBuildCommand(parsed, logger, options) {
|
|
5
5
|
const theme = createCliTheme(parsed.options);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { d as resolveConfigEnvVars } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { r as loadConfig, u as resolveConfigForEnvironment } from "./loader-
|
|
3
|
-
import { c as writeWranglerConfig, i as isolateViteBuildOutputPaths$1, o as rebaseWranglerConfigPaths, t as compileBuildConfig } from "./compiler-
|
|
2
|
+
import { r as loadConfig, u as resolveConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
3
|
+
import { c as writeWranglerConfig, i as isolateViteBuildOutputPaths$1, o as rebaseWranglerConfigPaths, t as compileBuildConfig } from "./compiler-CWBMlRiD.js";
|
|
4
4
|
import { f as logLine } from "./ui-BUoZApvE.js";
|
|
5
5
|
import { n as getPackageVersion } from "./package-metadata-DjHBLB-z.js";
|
|
6
6
|
import { t as resolvePackageSpecifier } from "./resolve-package-qizBfCIm.js";
|
|
7
|
-
import { i as writeGeneratedViteConfig, l as prepareComposedWorkerEntrypoint, n as resolveEffectiveViteProject } from "./vite-
|
|
7
|
+
import { i as writeGeneratedViteConfig, l as prepareComposedWorkerEntrypoint, n as resolveEffectiveViteProject } from "./vite-D-dP3R17.js";
|
|
8
8
|
import { t as bundleWorkerEntry } from "./worker-bundler-dTTnYU3n.js";
|
|
9
9
|
import { t as detectViteProject } from "./vite-utils-OVLMV605.js";
|
|
10
10
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
@@ -1101,50 +1101,50 @@ async function runInit(parsed, logger, options) {
|
|
|
1101
1101
|
return runInitCommand(parsed, logger, options);
|
|
1102
1102
|
}
|
|
1103
1103
|
async function runDev(parsed, logger, options) {
|
|
1104
|
-
const { runDevCommand } = await import("./dev-
|
|
1104
|
+
const { runDevCommand } = await import("./dev-DfdgmN71.js");
|
|
1105
1105
|
return runDevCommand(parsed, logger, options);
|
|
1106
1106
|
}
|
|
1107
1107
|
async function runBuild(parsed, logger, options) {
|
|
1108
|
-
const { runBuildCommand } = await import("./build-
|
|
1108
|
+
const { runBuildCommand } = await import("./build-Btye9WVX.js");
|
|
1109
1109
|
return runBuildCommand(parsed, logger, options);
|
|
1110
1110
|
}
|
|
1111
1111
|
async function runDeploy(parsed, logger, options) {
|
|
1112
|
-
const { runDeployCommand } = await import("./deploy-
|
|
1112
|
+
const { runDeployCommand } = await import("./deploy-D3h8QuT2.js");
|
|
1113
1113
|
return runDeployCommand(parsed, logger, {
|
|
1114
1114
|
...options,
|
|
1115
1115
|
requireExplicitDeployTarget: true
|
|
1116
1116
|
});
|
|
1117
1117
|
}
|
|
1118
1118
|
async function runTypes(parsed, logger, options) {
|
|
1119
|
-
const { runTypesCommand } = await import("./types-
|
|
1119
|
+
const { runTypesCommand } = await import("./types-qm3mkvYf.js");
|
|
1120
1120
|
return runTypesCommand(parsed, logger, options);
|
|
1121
1121
|
}
|
|
1122
1122
|
async function runDoctor(parsed, logger, options) {
|
|
1123
|
-
const { runDoctorCommand } = await import("./doctor-
|
|
1123
|
+
const { runDoctorCommand } = await import("./doctor-BITijwEH.js");
|
|
1124
1124
|
return runDoctorCommand(parsed, logger, options);
|
|
1125
1125
|
}
|
|
1126
1126
|
async function runConfig(parsed, logger, options) {
|
|
1127
|
-
const { runConfigCommand } = await import("./config-
|
|
1127
|
+
const { runConfigCommand } = await import("./config-DLCZznEQ.js");
|
|
1128
1128
|
return runConfigCommand(parsed, logger, options);
|
|
1129
1129
|
}
|
|
1130
1130
|
async function runAccount(parsed, logger, options) {
|
|
1131
|
-
const { runAccountCommand } = await import("./account-
|
|
1131
|
+
const { runAccountCommand } = await import("./account-Cm4a0Rpt.js");
|
|
1132
1132
|
return runAccountCommand(parsed, logger, options);
|
|
1133
1133
|
}
|
|
1134
1134
|
async function runLogin(parsed, logger, options) {
|
|
1135
|
-
const { runLoginCommand } = await import("./login-
|
|
1135
|
+
const { runLoginCommand } = await import("./login-tf9xOk7g.js");
|
|
1136
1136
|
return runLoginCommand(parsed, logger, options);
|
|
1137
1137
|
}
|
|
1138
1138
|
async function runPreviews(parsed, logger, options) {
|
|
1139
|
-
const { runPreviewsCommand } = await import("./previews-
|
|
1139
|
+
const { runPreviewsCommand } = await import("./previews-BSxNVnRa.js");
|
|
1140
1140
|
return runPreviewsCommand(parsed, logger, options);
|
|
1141
1141
|
}
|
|
1142
1142
|
async function runProductions(parsed, logger, options) {
|
|
1143
|
-
const { runProductionsCommand } = await import("./productions-
|
|
1143
|
+
const { runProductionsCommand } = await import("./productions-BLe9BtUW.js");
|
|
1144
1144
|
return runProductionsCommand(parsed, logger, options);
|
|
1145
1145
|
}
|
|
1146
1146
|
async function runWorker(parsed, logger, options) {
|
|
1147
|
-
const { runWorkerCommand } = await import("./worker-
|
|
1147
|
+
const { runWorkerCommand } = await import("./worker-DeERpsf0.js");
|
|
1148
1148
|
return runWorkerCommand(parsed, logger, options);
|
|
1149
1149
|
}
|
|
1150
1150
|
async function runToken(parsed, logger, options) {
|
|
@@ -1156,7 +1156,7 @@ async function runSecrets(parsed, logger, options) {
|
|
|
1156
1156
|
return runSecretsCommand(parsed, logger, options);
|
|
1157
1157
|
}
|
|
1158
1158
|
async function runTail(parsed, logger, options) {
|
|
1159
|
-
const { runTailCommand } = await import("./tail-
|
|
1159
|
+
const { runTailCommand } = await import("./tail-D-JbXjgl.js");
|
|
1160
1160
|
return runTailCommand(parsed, logger, options);
|
|
1161
1161
|
}
|
|
1162
1162
|
async function runAI() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as resolveConfigPath, r as loadConfig } from "./loader-
|
|
1
|
+
import { i as resolveConfigPath, r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { d as getPrimaryAccount, i as getWorkspaceAccountId, n as getEffectiveAccountId } from "./preferences-BKp_7XJx.js";
|
|
3
3
|
//#region src/cli/command-utils.ts
|
|
4
4
|
function asOptionalString(value) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { p as normalizeCompatibilityFlags, u as resolveConfigForEnvironment } from "./loader-
|
|
1
|
+
import { p as normalizeCompatibilityFlags, u as resolveConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { C as browserBindingSchema, _ as normalizeSecretsStoreBinding, a as normalizeD1Binding, b as normalizeVpcServiceBinding, c as normalizeFlagshipBinding, d as normalizeKVBinding, f as normalizeMediaBinding, g as normalizeR2Binding, h as normalizeQueueProducer, i as normalizeArtifactsBinding, l as normalizeHyperdriveBinding, m as normalizePipelineBinding, o as normalizeDOBinding, p as normalizeMtlsCertificateBinding, r as getSingleBrowserBindingName, s as normalizeDispatchNamespaceBinding, u as normalizeImagesBinding, v as normalizeStreamBinding, x as normalizeWorkflowBinding, y as normalizeVpcNetworkBinding } from "./schema-normalization-Zgm4W6O6.js";
|
|
3
3
|
import { n as toWranglerSecretsConfig } from "./local-dev-vars-CTSa-wvF.js";
|
|
4
4
|
import { basename, isAbsolute, relative, resolve } from "pathe";
|
|
@@ -246,9 +246,8 @@ function compileBindings(bindings, result, options = {}, defaultSecretsStoreId)
|
|
|
246
246
|
});
|
|
247
247
|
if (bindings.services) result.services = Object.entries(bindings.services).map(([binding, config]) => ({
|
|
248
248
|
binding,
|
|
249
|
-
service: config.service,
|
|
249
|
+
service: config.environment ? `${config.service}-${config.environment}` : config.service,
|
|
250
250
|
...config.entrypoint && { entrypoint: config.entrypoint },
|
|
251
|
-
...config.environment && { environment: config.environment },
|
|
252
251
|
...config.remote !== void 0 && { remote: config.remote },
|
|
253
252
|
...config.props !== void 0 && { props: config.props }
|
|
254
253
|
}));
|
|
@@ -467,8 +466,8 @@ function compileConfigInternal(config, environment, options = {}) {
|
|
|
467
466
|
...route.zone_name && { zone_name: route.zone_name },
|
|
468
467
|
...route.zone_id && { zone_id: route.zone_id },
|
|
469
468
|
...route.custom_domain !== void 0 && { custom_domain: route.custom_domain },
|
|
470
|
-
...route.enabled !== void 0 && { enabled: route.enabled },
|
|
471
|
-
...route.previews_enabled !== void 0 && { previews_enabled: route.previews_enabled }
|
|
469
|
+
...route.custom_domain && route.enabled !== void 0 && { enabled: route.enabled },
|
|
470
|
+
...route.custom_domain && route.previews_enabled !== void 0 && { previews_enabled: route.previews_enabled }
|
|
472
471
|
}));
|
|
473
472
|
if (mergedConfig.assets?.directory) result.assets = {
|
|
474
473
|
directory: mergedConfig.assets.directory,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { d as resolveConfigEnvVars } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { a as ConfigResourceResolutionError, o as loadResolvedConfig, r as loadConfig, s as resolveResources } from "./loader-
|
|
3
|
-
import { n as compileConfig, t as compileBuildConfig } from "./compiler-
|
|
2
|
+
import { a as ConfigResourceResolutionError, o as loadResolvedConfig, r as loadConfig, s as resolveResources } from "./loader-CrY7iWEO.js";
|
|
3
|
+
import { n as compileConfig, t as compileBuildConfig } from "./compiler-CWBMlRiD.js";
|
|
4
4
|
//#region src/cli/commands/config.ts
|
|
5
5
|
function isSupportedFormat(value) {
|
|
6
6
|
return value === "devflare" || value === "wrangler";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { a as resolvePreviewIdentifier, d as resolveConfigEnvVars } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { c as prepareConfigResourcesForDeploy, r as loadConfig, u as resolveConfigForEnvironment } from "./loader-
|
|
3
|
-
import { a as readWranglerConfig, c as writeWranglerConfig, n as compileConfig, o as rebaseWranglerConfigPaths, s as stringifyConfig, t as compileBuildConfig } from "./compiler-
|
|
2
|
+
import { c as prepareConfigResourcesForDeploy, r as loadConfig, u as resolveConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
3
|
+
import { a as readWranglerConfig, c as writeWranglerConfig, n as compileConfig, o as rebaseWranglerConfigPaths, s as stringifyConfig, t as compileBuildConfig } from "./compiler-CWBMlRiD.js";
|
|
4
4
|
import { d as getPrimaryAccount, n as getEffectiveAccountId } from "./preferences-BKp_7XJx.js";
|
|
5
5
|
import { D as listWorkerVersions, E as listWorkerDeployments, O as listWorkers, T as getWorkersSubdomain, c as reconcilePreviewRegistry, w as getWorkerVersionDetail, x as formatWorkersDevUrl } from "./preview-registry-ClAbLTHH.js";
|
|
6
6
|
import { _ as yellowBold, d as green, f as logLine, g as yellow, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
7
7
|
import { n as getPackageVersion } from "./package-metadata-DjHBLB-z.js";
|
|
8
8
|
import { t as resolvePackageSpecifier } from "./resolve-package-qizBfCIm.js";
|
|
9
|
-
import { t as asOptionalString } from "./command-utils-
|
|
10
|
-
import { a as createBuildManifest, i as compareManifests, n as applyDeploymentStrategy, o as formatDriftWarning, r as describeDeploymentStrategy, s as readBuildManifest, t as prepareBuildArtifacts } from "./build-artifacts-
|
|
9
|
+
import { t as asOptionalString } from "./command-utils-q7afD0vr.js";
|
|
10
|
+
import { a as createBuildManifest, i as compareManifests, n as applyDeploymentStrategy, o as formatDriftWarning, r as describeDeploymentStrategy, s as readBuildManifest, t as prepareBuildArtifacts } from "./build-artifacts-Bthg6ZA4.js";
|
|
11
11
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
12
|
-
import { n as preparePreviewScopedResourcesForDeploy } from "./preview-resources-
|
|
12
|
+
import { n as preparePreviewScopedResourcesForDeploy } from "./preview-resources-C0oa8PMU.js";
|
|
13
13
|
import { mkdir, open, readFile, rm, writeFile } from "node:fs/promises";
|
|
14
14
|
import { basename, dirname, isAbsolute, join, resolve } from "pathe";
|
|
15
15
|
//#region src/config/service-bindings-validation.ts
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { c as getDevflareDotenvPaths, d as resolveConfigEnvVars, o as EnvVarResolutionError } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { i as resolveConfigPath, r as loadConfig } from "./loader-
|
|
2
|
+
import { i as resolveConfigPath, r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
3
3
|
import { g as normalizeR2Binding, n as getLocalKVNamespaceIdentifier, r as getSingleBrowserBindingName, t as getLocalD1DatabaseIdentifier } from "./schema-normalization-Zgm4W6O6.js";
|
|
4
4
|
import { t as applyLocalDevVarsToConfig } from "./local-dev-vars-CTSa-wvF.js";
|
|
5
5
|
import { a as cyanBold, f as logLine, g as yellow, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
6
6
|
import { clearLocalSendEmailBindings, setLocalSendEmailBindings } from "../utils/send-email.js";
|
|
7
|
-
import { C as buildSendEmailConfig, D as buildVersionMetadataConfig, E as buildTailConsumersConfig, O as buildWorkerLoadersConfig, S as buildSecretsStoreConfig, T as buildStreamingTailConsumersConfig, _ as buildMtlsCertificatesConfig, b as buildQueueProducers, c as buildAiSearchInstancesConfig, d as buildArtifactsConfig, f as buildDispatchNamespacesConfig, g as buildMediaConfig, h as buildImagesConfig, k as buildWorkflowsConfig, l as buildAiSearchNamespacesConfig, m as buildHyperdrivesConfig, n as getRouteDirectoryCandidate, p as buildFlagshipConfig, s as resolveServiceBindings, t as discoverRoutes, u as buildAnalyticsEngineConfig, v as buildPipelinesConfig, w as buildStreamConfig, x as buildRateLimitsConfig, y as buildQueueConsumers } from "./routes-
|
|
7
|
+
import { C as buildSendEmailConfig, D as buildVersionMetadataConfig, E as buildTailConsumersConfig, O as buildWorkerLoadersConfig, S as buildSecretsStoreConfig, T as buildStreamingTailConsumersConfig, _ as buildMtlsCertificatesConfig, b as buildQueueProducers, c as buildAiSearchInstancesConfig, d as buildArtifactsConfig, f as buildDispatchNamespacesConfig, g as buildMediaConfig, h as buildImagesConfig, k as buildWorkflowsConfig, l as buildAiSearchNamespacesConfig, m as buildHyperdrivesConfig, n as getRouteDirectoryCandidate, p as buildFlagshipConfig, s as resolveServiceBindings, t as discoverRoutes, u as buildAnalyticsEngineConfig, v as buildPipelinesConfig, w as buildStreamConfig, x as buildRateLimitsConfig, y as buildQueueConsumers } from "./routes-Cs44gHeZ.js";
|
|
8
8
|
import { r as transformDurableObject } from "./durable-object-DMtH0XYX.js";
|
|
9
9
|
import { i as findFiles } from "./glob-CmQOvunB.js";
|
|
10
|
-
import { d as DEFAULT_FETCH_ENTRY_FILES, f as DEFAULT_QUEUE_ENTRY_FILES, g as discoverDurableObjectFiles, h as resolveWorkerSurfacePaths, i as writeGeneratedViteConfig, l as prepareComposedWorkerEntrypoint, m as hasWorkerSurfacePaths, n as resolveEffectiveViteProject, p as DEFAULT_SCHEDULED_ENTRY_FILES, u as DEFAULT_EMAIL_ENTRY_FILES } from "./vite-
|
|
10
|
+
import { d as DEFAULT_FETCH_ENTRY_FILES, f as DEFAULT_QUEUE_ENTRY_FILES, g as discoverDurableObjectFiles, h as resolveWorkerSurfacePaths, i as writeGeneratedViteConfig, l as prepareComposedWorkerEntrypoint, m as hasWorkerSurfacePaths, n as resolveEffectiveViteProject, p as DEFAULT_SCHEDULED_ENTRY_FILES, u as DEFAULT_EMAIL_ENTRY_FILES } from "./vite-D-dP3R17.js";
|
|
11
11
|
import { a as createWorkerdBundlerDefaults, i as writeWorkerCompatibleBundle, n as ensureDebugShim, r as resolveWorkerCompatibleRolldownConfig, t as bundleWorkerEntry } from "./worker-bundler-dTTnYU3n.js";
|
|
12
12
|
import { t as bundleWorkflowEntrypointScript } from "./local-workflow-entrypoints-ZIL7apIa.js";
|
|
13
13
|
import { n as buildLocalSecretWrappedBindingConfig } from "./local-secrets-6sMstHXw.js";
|
|
@@ -2026,8 +2026,11 @@ function buildMiniflareDevConfig(input) {
|
|
|
2026
2026
|
...serverConfig?.httpsKeyPath !== void 0 && { httpsKeyPath: serverConfig.httpsKeyPath },
|
|
2027
2027
|
...serverConfig?.httpsCertPath !== void 0 && { httpsCertPath: serverConfig.httpsCertPath },
|
|
2028
2028
|
...serverConfig?.inspectorPort !== void 0 && { inspectorPort: serverConfig.inspectorPort },
|
|
2029
|
+
...serverConfig?.inspectorHost !== void 0 && { inspectorHost: serverConfig.inspectorHost },
|
|
2029
2030
|
...serverConfig?.upstream !== void 0 && { upstream: serverConfig.upstream },
|
|
2030
2031
|
...serverConfig?.liveReload !== void 0 && { liveReload: serverConfig.liveReload },
|
|
2032
|
+
...serverConfig?.verbose !== void 0 && { verbose: serverConfig.verbose },
|
|
2033
|
+
...serverConfig?.logRequests !== void 0 && { logRequests: serverConfig.logRequests },
|
|
2031
2034
|
...serverConfig?.cf !== void 0 && { cf: serverConfig.cf }
|
|
2032
2035
|
};
|
|
2033
2036
|
const localBindingShimServiceConfig = buildLocalBindingShimServiceConfig(loadedConfig);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { r as loadConfig } from "./loader-
|
|
1
|
+
import { r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { d as green, f as logLine, g as yellow, m as red, n as bold, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
3
3
|
import { n as getPackageVersion } from "./package-metadata-DjHBLB-z.js";
|
|
4
4
|
import { t as detectViteProject } from "./vite-utils-OVLMV605.js";
|
|
5
5
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
6
6
|
import { n as getGeneratedArtifactPaths } from "./generated-artifacts-dMJY4KAt.js";
|
|
7
|
-
import { n as formatSupportedConfigFilenames, r as resolveConfigCandidatePath } from "./config-path-
|
|
7
|
+
import { n as formatSupportedConfigFilenames, r as resolveConfigCandidatePath } from "./config-path-BLNgjwZL.js";
|
|
8
8
|
import { basename, dirname, relative, resolve } from "pathe";
|
|
9
9
|
//#region src/cli/commands/doctor.ts
|
|
10
10
|
async function runDoctorCommand(parsed, logger, options) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { u as resolveConfigForEnvironment } from "./loader-
|
|
1
|
+
import { u as resolveConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
2
2
|
//#region src/cli/commands/previews-support/family.ts
|
|
3
3
|
function compareConfiguredWorkerFamilies(left, right) {
|
|
4
4
|
if (left.role === "primary" && right.role !== "primary") return -1;
|
|
@@ -244,6 +244,9 @@ const serverConfigSchema = z.object({
|
|
|
244
244
|
httpsKeyPath: z.string().min(1).optional(),
|
|
245
245
|
httpsCertPath: z.string().min(1).optional(),
|
|
246
246
|
inspectorPort: z.number().int().min(1).max(65535).optional(),
|
|
247
|
+
inspectorHost: z.string().min(1).optional(),
|
|
248
|
+
verbose: z.boolean().optional(),
|
|
249
|
+
logRequests: z.boolean().optional(),
|
|
247
250
|
upstream: z.string().min(1).optional(),
|
|
248
251
|
liveReload: z.boolean().optional(),
|
|
249
252
|
cf: z.union([
|
|
@@ -267,6 +270,18 @@ const routeConfigSchema = z.object({
|
|
|
267
270
|
enabled: z.boolean().optional(),
|
|
268
271
|
previews_enabled: z.boolean().optional()
|
|
269
272
|
}).superRefine((route, ctx) => {
|
|
273
|
+
if ((route.enabled !== void 0 || route.previews_enabled !== void 0) && !route.custom_domain) {
|
|
274
|
+
if (route.enabled !== void 0) ctx.addIssue({
|
|
275
|
+
code: z.ZodIssueCode.custom,
|
|
276
|
+
path: ["enabled"],
|
|
277
|
+
message: "`enabled`/`previews_enabled` are only valid on a custom-domain route (set `custom_domain: true`)"
|
|
278
|
+
});
|
|
279
|
+
if (route.previews_enabled !== void 0) ctx.addIssue({
|
|
280
|
+
code: z.ZodIssueCode.custom,
|
|
281
|
+
path: ["previews_enabled"],
|
|
282
|
+
message: "`enabled`/`previews_enabled` are only valid on a custom-domain route (set `custom_domain: true`)"
|
|
283
|
+
});
|
|
284
|
+
}
|
|
270
285
|
if (!route.custom_domain) return;
|
|
271
286
|
if (route.pattern.includes("*")) ctx.addIssue({
|
|
272
287
|
code: z.ZodIssueCode.custom,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as account } from "./cloudflare-BaloqI3H.js";
|
|
2
2
|
import { d as green, f as logLine, g as yellow, h as whiteDim, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
3
|
-
import { n as getConfiguredAccountId } from "./command-utils-
|
|
3
|
+
import { n as getConfiguredAccountId } from "./command-utils-q7afD0vr.js";
|
|
4
4
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
5
5
|
//#region src/cli/commands/login.ts
|
|
6
6
|
async function logResolvedAccount(cwd, logger, theme) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as materializePreviewScopedConfig, r as materializePreviewScopedString, t as isPreviewScopedName } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { l as mergeConfigForEnvironment } from "./loader-
|
|
2
|
+
import { l as mergeConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
3
3
|
import { g as normalizeR2Binding, h as normalizeQueueProducer } from "./schema-normalization-Zgm4W6O6.js";
|
|
4
4
|
import { d as getPrimaryAccount, n as getEffectiveAccountId } from "./preferences-BKp_7XJx.js";
|
|
5
5
|
import { _ as listR2Buckets, a as createVectorizeIndex, c as deleteKVNamespace, d as deleteVectorizeIndex, g as listQueues, h as listKVNamespaces, i as createR2Bucket, l as deleteQueue, m as listHyperdrives, n as createKVNamespace, o as deleteD1Database, p as listD1Databases, r as createQueue, s as deleteHyperdrive, t as createD1Database, u as deleteR2Bucket, v as listVectorizeIndexes } from "./account-resources-CsmVowJp.js";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { a as resolvePreviewIdentifier } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { i as resolveConfigPath, o as loadResolvedConfig, r as loadConfig, t as ConfigNotFoundError } from "./loader-
|
|
3
|
-
import { t as compileBuildConfig } from "./compiler-
|
|
2
|
+
import { i as resolveConfigPath, o as loadResolvedConfig, r as loadConfig, t as ConfigNotFoundError } from "./loader-CrY7iWEO.js";
|
|
3
|
+
import { t as compileBuildConfig } from "./compiler-CWBMlRiD.js";
|
|
4
4
|
import { t as account } from "./cloudflare-BaloqI3H.js";
|
|
5
5
|
import { _ as yellowBold, a as cyanBold, d as green, f as logLine, g as yellow, h as whiteDim, m as red, n as bold, o as dim, r as createCliTheme, u as formatTableLine } from "./ui-BUoZApvE.js";
|
|
6
|
-
import { i as resolveNamedSelection, r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-
|
|
6
|
+
import { i as resolveNamedSelection, r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-q7afD0vr.js";
|
|
7
7
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
8
|
-
import { t as cleanupPreviewScopedResources } from "./preview-resources-
|
|
9
|
-
import { t as findConfigPathsUnderDirectory } from "./config-path-
|
|
10
|
-
import { a as orderPreviewWorkerNamesForDeletion, i as collectConfiguredWorkerFamilies, n as buildPreviewWorkerCandidatesByScope, r as buildStableWorkerRowsFromLiveWorkers, t as buildPreviewScopeRowsFromLiveWorkers } from "./family-
|
|
8
|
+
import { t as cleanupPreviewScopedResources } from "./preview-resources-C0oa8PMU.js";
|
|
9
|
+
import { t as findConfigPathsUnderDirectory } from "./config-path-BLNgjwZL.js";
|
|
10
|
+
import { a as orderPreviewWorkerNamesForDeletion, i as collectConfiguredWorkerFamilies, n as buildPreviewWorkerCandidatesByScope, r as buildStableWorkerRowsFromLiveWorkers, t as buildPreviewScopeRowsFromLiveWorkers } from "./family-Bsyfu8O3.js";
|
|
11
11
|
//#region src/cli/preview-bindings.ts
|
|
12
12
|
function normalizeCell(value) {
|
|
13
13
|
return (value ?? "").trim().replace(/\s+/g, " ");
|
|
@@ -161,8 +161,7 @@ function collectBindingAssociationTargets(config) {
|
|
|
161
161
|
for (const binding of compiled.services ?? []) addAssociationTarget(targets, {
|
|
162
162
|
reference: binding.binding,
|
|
163
163
|
type: "Worker",
|
|
164
|
-
resource: binding.entrypoint ? `${binding.service}#${binding.entrypoint}` : binding.service
|
|
165
|
-
note: binding.environment ? `env ${binding.environment}` : void 0
|
|
164
|
+
resource: binding.entrypoint ? `${binding.service}#${binding.entrypoint}` : binding.service
|
|
166
165
|
});
|
|
167
166
|
if (compiled.ai?.binding) addAssociationTarget(targets, {
|
|
168
167
|
reference: compiled.ai.binding,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { r as loadConfig, t as ConfigNotFoundError } from "./loader-
|
|
1
|
+
import { r as loadConfig, t as ConfigNotFoundError } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { t as account } from "./cloudflare-BaloqI3H.js";
|
|
3
3
|
import { a as cyanBold, d as green, f as logLine, g as yellow, h as whiteDim, l as formatLabelValue, m as red, n as bold, o as dim, p as logTable, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
4
4
|
import { i as findFiles } from "./glob-CmQOvunB.js";
|
|
5
|
-
import { i as resolveNamedSelection, r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-
|
|
5
|
+
import { i as resolveNamedSelection, r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-q7afD0vr.js";
|
|
6
6
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
7
|
-
import { i as collectConfiguredWorkerFamilies } from "./family-
|
|
7
|
+
import { i as collectConfiguredWorkerFamilies } from "./family-Bsyfu8O3.js";
|
|
8
8
|
//#region src/cli/commands/productions.ts
|
|
9
9
|
const CLI_API_OPTIONS = { timeout: 1e4 };
|
|
10
10
|
const PRODUCTION_SUBCOMMANDS = [
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as configSchema } from "./loader-
|
|
1
|
+
import { d as configSchema } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { _ as normalizeSecretsStoreBinding, c as normalizeFlagshipBinding, f as normalizeMediaBinding, g as normalizeR2Binding, h as normalizeQueueProducer, i as normalizeArtifactsBinding, l as normalizeHyperdriveBinding, m as normalizePipelineBinding, n as getLocalKVNamespaceIdentifier, o as normalizeDOBinding, p as normalizeMtlsCertificateBinding, s as normalizeDispatchNamespaceBinding, t as getLocalD1DatabaseIdentifier, u as normalizeImagesBinding, v as normalizeStreamBinding, x as normalizeWorkflowBinding } from "./schema-normalization-Zgm4W6O6.js";
|
|
3
3
|
import { n as findDurableObjectClasses } from "./durable-object-DMtH0XYX.js";
|
|
4
4
|
import { r as SUPPORTED_WORKER_EXTENSIONS, t as transformWorkerEntrypoint } from "./worker-entrypoint-CQW77lG8.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { r as loadConfig } from "./loader-
|
|
1
|
+
import { r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { p as getApiToken } from "./api-TzdliH-6.js";
|
|
3
3
|
import { d as green, f as logLine, g as yellow, h as whiteDim, m as red, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
4
|
-
import { r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-
|
|
4
|
+
import { r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-q7afD0vr.js";
|
|
5
5
|
//#region src/cli/commands/tail.ts
|
|
6
6
|
const CLOUDFLARE_API_BASE = "https://api.cloudflare.com/client/v4";
|
|
7
7
|
const TAIL_SUBPROTOCOL = "trace-v1";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { r as loadConfig } from "./loader-
|
|
1
|
+
import { r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { o as normalizeDOBinding } from "./schema-normalization-Zgm4W6O6.js";
|
|
3
3
|
import { n as bold, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
4
4
|
import { n as findDurableObjectClasses } from "./durable-object-DMtH0XYX.js";
|
|
5
5
|
import { i as findFiles, n as DEFAULT_ENTRYPOINT_PATTERN, t as DEFAULT_DO_PATTERN } from "./glob-CmQOvunB.js";
|
|
6
6
|
import { n as discoverEntrypointsAsync, t as resolvePackageSpecifier } from "./resolve-package-qizBfCIm.js";
|
|
7
7
|
import { t as getDependencies } from "./dependencies-C2oxFjU_.js";
|
|
8
|
-
import { r as resolveConfigCandidatePath } from "./config-path-
|
|
8
|
+
import { r as resolveConfigCandidatePath } from "./config-path-BLNgjwZL.js";
|
|
9
9
|
import { readFile } from "node:fs/promises";
|
|
10
10
|
import { dirname, relative, resolve } from "pathe";
|
|
11
11
|
//#region src/cli/commands/type-generation/discovery.ts
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { d as resolveConfigEnvVars } from "./preview-C3Cdr8an.js";
|
|
2
|
-
import { i as resolveConfigPath, o as loadResolvedConfig, r as loadConfig, s as resolveResources, u as resolveConfigForEnvironment } from "./loader-
|
|
2
|
+
import { i as resolveConfigPath, o as loadResolvedConfig, r as loadConfig, s as resolveResources, u as resolveConfigForEnvironment } from "./loader-CrY7iWEO.js";
|
|
3
3
|
import { o as normalizeDOBinding } from "./schema-normalization-Zgm4W6O6.js";
|
|
4
|
-
import { c as writeWranglerConfig, i as isolateViteBuildOutputPaths, n as compileConfig, o as rebaseWranglerConfigPaths, r as compileToProgrammaticConfig, t as compileBuildConfig } from "./compiler-
|
|
4
|
+
import { c as writeWranglerConfig, i as isolateViteBuildOutputPaths, n as compileConfig, o as rebaseWranglerConfigPaths, r as compileToProgrammaticConfig, t as compileBuildConfig } from "./compiler-CWBMlRiD.js";
|
|
5
5
|
import { h as resolveFetchHandler, i as assertExplicit2ArgStyle } from "./runtime-DL-Nz3k8.js";
|
|
6
|
-
import { s as resolveServiceBindings, t as discoverRoutes } from "./routes-
|
|
6
|
+
import { s as resolveServiceBindings, t as discoverRoutes } from "./routes-Cs44gHeZ.js";
|
|
7
7
|
import { n as findDurableObjectClasses } from "./durable-object-DMtH0XYX.js";
|
|
8
8
|
import { r as SUPPORTED_WORKER_EXTENSIONS } from "./worker-entrypoint-CQW77lG8.js";
|
|
9
9
|
import { i as findFiles, t as DEFAULT_DO_PATTERN } from "./glob-CmQOvunB.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { r as loadConfig } from "./loader-
|
|
1
|
+
import { r as loadConfig } from "./loader-CrY7iWEO.js";
|
|
2
2
|
import { o as normalizeDOBinding } from "./schema-normalization-Zgm4W6O6.js";
|
|
3
3
|
import { t as account } from "./cloudflare-BaloqI3H.js";
|
|
4
4
|
import { d as green, f as logLine, g as yellow, h as whiteDim, n as bold, o as dim, r as createCliTheme } from "./ui-BUoZApvE.js";
|
|
5
|
-
import { r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-
|
|
6
|
-
import { n as formatSupportedConfigFilenames, r as resolveConfigCandidatePath, t as findConfigPathsUnderDirectory } from "./config-path-
|
|
5
|
+
import { r as resolveCloudflareAccountId, t as asOptionalString } from "./command-utils-q7afD0vr.js";
|
|
6
|
+
import { n as formatSupportedConfigFilenames, r as resolveConfigCandidatePath, t as findConfigPathsUnderDirectory } from "./config-path-BLNgjwZL.js";
|
|
7
7
|
import { basename, dirname, relative, resolve } from "pathe";
|
|
8
8
|
import MagicString from "magic-string";
|
|
9
9
|
//#region src/cli/commands/worker.ts
|
package/dist/browser.d.ts
CHANGED
|
@@ -35,6 +35,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
35
35
|
httpsKeyPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
36
36
|
httpsCertPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
37
37
|
inspectorPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
38
|
+
inspectorHost: import("zod").ZodOptional<import("zod").ZodString>;
|
|
39
|
+
verbose: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
40
|
+
logRequests: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
38
41
|
upstream: import("zod").ZodOptional<import("zod").ZodString>;
|
|
39
42
|
liveReload: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
40
43
|
cf: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>]>>;
|
|
@@ -45,6 +48,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
45
48
|
httpsKeyPath?: string | undefined;
|
|
46
49
|
httpsCertPath?: string | undefined;
|
|
47
50
|
inspectorPort?: number | undefined;
|
|
51
|
+
inspectorHost?: string | undefined;
|
|
52
|
+
verbose?: boolean | undefined;
|
|
53
|
+
logRequests?: boolean | undefined;
|
|
48
54
|
upstream?: string | undefined;
|
|
49
55
|
liveReload?: boolean | undefined;
|
|
50
56
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -55,6 +61,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
55
61
|
httpsKeyPath?: string | undefined;
|
|
56
62
|
httpsCertPath?: string | undefined;
|
|
57
63
|
inspectorPort?: number | undefined;
|
|
64
|
+
inspectorHost?: string | undefined;
|
|
65
|
+
verbose?: boolean | undefined;
|
|
66
|
+
logRequests?: boolean | undefined;
|
|
58
67
|
upstream?: string | undefined;
|
|
59
68
|
liveReload?: boolean | undefined;
|
|
60
69
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -1308,6 +1317,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
1308
1317
|
httpsKeyPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1309
1318
|
httpsCertPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1310
1319
|
inspectorPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1320
|
+
inspectorHost: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1321
|
+
verbose: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1322
|
+
logRequests: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1311
1323
|
upstream: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1312
1324
|
liveReload: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1313
1325
|
cf: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>]>>;
|
|
@@ -1318,6 +1330,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
1318
1330
|
httpsKeyPath?: string | undefined;
|
|
1319
1331
|
httpsCertPath?: string | undefined;
|
|
1320
1332
|
inspectorPort?: number | undefined;
|
|
1333
|
+
inspectorHost?: string | undefined;
|
|
1334
|
+
verbose?: boolean | undefined;
|
|
1335
|
+
logRequests?: boolean | undefined;
|
|
1321
1336
|
upstream?: string | undefined;
|
|
1322
1337
|
liveReload?: boolean | undefined;
|
|
1323
1338
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -1328,6 +1343,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
1328
1343
|
httpsKeyPath?: string | undefined;
|
|
1329
1344
|
httpsCertPath?: string | undefined;
|
|
1330
1345
|
inspectorPort?: number | undefined;
|
|
1346
|
+
inspectorHost?: string | undefined;
|
|
1347
|
+
verbose?: boolean | undefined;
|
|
1348
|
+
logRequests?: boolean | undefined;
|
|
1331
1349
|
upstream?: string | undefined;
|
|
1332
1350
|
liveReload?: boolean | undefined;
|
|
1333
1351
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -2561,6 +2579,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
2561
2579
|
httpsKeyPath?: string | undefined;
|
|
2562
2580
|
httpsCertPath?: string | undefined;
|
|
2563
2581
|
inspectorPort?: number | undefined;
|
|
2582
|
+
inspectorHost?: string | undefined;
|
|
2583
|
+
verbose?: boolean | undefined;
|
|
2584
|
+
logRequests?: boolean | undefined;
|
|
2564
2585
|
upstream?: string | undefined;
|
|
2565
2586
|
liveReload?: boolean | undefined;
|
|
2566
2587
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -2871,6 +2892,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
2871
2892
|
httpsKeyPath?: string | undefined;
|
|
2872
2893
|
httpsCertPath?: string | undefined;
|
|
2873
2894
|
inspectorPort?: number | undefined;
|
|
2895
|
+
inspectorHost?: string | undefined;
|
|
2896
|
+
verbose?: boolean | undefined;
|
|
2897
|
+
logRequests?: boolean | undefined;
|
|
2874
2898
|
upstream?: string | undefined;
|
|
2875
2899
|
liveReload?: boolean | undefined;
|
|
2876
2900
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -3183,6 +3207,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
3183
3207
|
httpsKeyPath?: string | undefined;
|
|
3184
3208
|
httpsCertPath?: string | undefined;
|
|
3185
3209
|
inspectorPort?: number | undefined;
|
|
3210
|
+
inspectorHost?: string | undefined;
|
|
3211
|
+
verbose?: boolean | undefined;
|
|
3212
|
+
logRequests?: boolean | undefined;
|
|
3186
3213
|
upstream?: string | undefined;
|
|
3187
3214
|
liveReload?: boolean | undefined;
|
|
3188
3215
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -3499,6 +3526,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
3499
3526
|
httpsKeyPath?: string | undefined;
|
|
3500
3527
|
httpsCertPath?: string | undefined;
|
|
3501
3528
|
inspectorPort?: number | undefined;
|
|
3529
|
+
inspectorHost?: string | undefined;
|
|
3530
|
+
verbose?: boolean | undefined;
|
|
3531
|
+
logRequests?: boolean | undefined;
|
|
3502
3532
|
upstream?: string | undefined;
|
|
3503
3533
|
liveReload?: boolean | undefined;
|
|
3504
3534
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -3811,6 +3841,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
3811
3841
|
httpsKeyPath?: string | undefined;
|
|
3812
3842
|
httpsCertPath?: string | undefined;
|
|
3813
3843
|
inspectorPort?: number | undefined;
|
|
3844
|
+
inspectorHost?: string | undefined;
|
|
3845
|
+
verbose?: boolean | undefined;
|
|
3846
|
+
logRequests?: boolean | undefined;
|
|
3814
3847
|
upstream?: string | undefined;
|
|
3815
3848
|
liveReload?: boolean | undefined;
|
|
3816
3849
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -4127,6 +4160,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
4127
4160
|
httpsKeyPath?: string | undefined;
|
|
4128
4161
|
httpsCertPath?: string | undefined;
|
|
4129
4162
|
inspectorPort?: number | undefined;
|
|
4163
|
+
inspectorHost?: string | undefined;
|
|
4164
|
+
verbose?: boolean | undefined;
|
|
4165
|
+
logRequests?: boolean | undefined;
|
|
4130
4166
|
upstream?: string | undefined;
|
|
4131
4167
|
liveReload?: boolean | undefined;
|
|
4132
4168
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -4439,6 +4475,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
4439
4475
|
httpsKeyPath?: string | undefined;
|
|
4440
4476
|
httpsCertPath?: string | undefined;
|
|
4441
4477
|
inspectorPort?: number | undefined;
|
|
4478
|
+
inspectorHost?: string | undefined;
|
|
4479
|
+
verbose?: boolean | undefined;
|
|
4480
|
+
logRequests?: boolean | undefined;
|
|
4442
4481
|
upstream?: string | undefined;
|
|
4443
4482
|
liveReload?: boolean | undefined;
|
|
4444
4483
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -4755,6 +4794,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
4755
4794
|
httpsKeyPath?: string | undefined;
|
|
4756
4795
|
httpsCertPath?: string | undefined;
|
|
4757
4796
|
inspectorPort?: number | undefined;
|
|
4797
|
+
inspectorHost?: string | undefined;
|
|
4798
|
+
verbose?: boolean | undefined;
|
|
4799
|
+
logRequests?: boolean | undefined;
|
|
4758
4800
|
upstream?: string | undefined;
|
|
4759
4801
|
liveReload?: boolean | undefined;
|
|
4760
4802
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -5067,6 +5109,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
5067
5109
|
httpsKeyPath?: string | undefined;
|
|
5068
5110
|
httpsCertPath?: string | undefined;
|
|
5069
5111
|
inspectorPort?: number | undefined;
|
|
5112
|
+
inspectorHost?: string | undefined;
|
|
5113
|
+
verbose?: boolean | undefined;
|
|
5114
|
+
logRequests?: boolean | undefined;
|
|
5070
5115
|
upstream?: string | undefined;
|
|
5071
5116
|
liveReload?: boolean | undefined;
|
|
5072
5117
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
|
@@ -5383,6 +5428,9 @@ export declare const configSchema: import("zod").ZodEffects<import("zod").ZodObj
|
|
|
5383
5428
|
httpsKeyPath?: string | undefined;
|
|
5384
5429
|
httpsCertPath?: string | undefined;
|
|
5385
5430
|
inspectorPort?: number | undefined;
|
|
5431
|
+
inspectorHost?: string | undefined;
|
|
5432
|
+
verbose?: boolean | undefined;
|
|
5433
|
+
logRequests?: boolean | undefined;
|
|
5386
5434
|
upstream?: string | undefined;
|
|
5387
5435
|
liveReload?: boolean | undefined;
|
|
5388
5436
|
cf?: string | boolean | Record<string, unknown> | undefined;
|
package/dist/browser.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../src/browser.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAA;AAGlC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAGjC,OAAO,EACN,eAAe,EACf,cAAc,EACd,OAAO,EACP,MAAM,gBAAgB,CAAA;AACvB,YAAY,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AACnE,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACzD,YAAY,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAG1D,OAAO,EACN,aAAa,EACb,uBAAuB,EACvB,KAAK,oBAAoB,EACzB,MAAM,cAAc,CAAA;AAGrB,KAAK,YAAY,GAAG,cAAc,UAAU,CAAC,CAAA;AAM7C,KAAK,uBAAuB,GAAG,qBAAqB,CAAC,YAAY,CAAC,qBAAqB,CAAC,CAAC,CAAA;AACzF,KAAK,yBAAyB,GAAG,qBAAqB,CAAC,YAAY,CAAC,uBAAuB,CAAC,CAAC,CAAA;AAC7F,KAAK,iCAAiC,GAAG,qBAAqB,CAC7D,YAAY,CAAC,+BAA+B,CAAC,CAC7C,CAAA;AAkCD,eAAO,MAAM,UAAU,sCAAgE,CAAA;AACvF,eAAO,MAAM,kBAAkB,8CAC+C,CAAA;AAE9E,eAAO,MAAM,aAAa,yCAAsE,CAAA;AAChG,eAAO,MAAM,eAAe,2CAC4C,CAAA;AACxE,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../src/browser.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAA;AAGlC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,OAAO,CAAA;AAGjC,OAAO,EACN,eAAe,EACf,cAAc,EACd,OAAO,EACP,MAAM,gBAAgB,CAAA;AACvB,YAAY,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AACnE,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACzD,YAAY,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAG1D,OAAO,EACN,aAAa,EACb,uBAAuB,EACvB,KAAK,oBAAoB,EACzB,MAAM,cAAc,CAAA;AAGrB,KAAK,YAAY,GAAG,cAAc,UAAU,CAAC,CAAA;AAM7C,KAAK,uBAAuB,GAAG,qBAAqB,CAAC,YAAY,CAAC,qBAAqB,CAAC,CAAC,CAAA;AACzF,KAAK,yBAAyB,GAAG,qBAAqB,CAAC,YAAY,CAAC,uBAAuB,CAAC,CAAC,CAAA;AAC7F,KAAK,iCAAiC,GAAG,qBAAqB,CAC7D,YAAY,CAAC,+BAA+B,CAAC,CAC7C,CAAA;AAkCD,eAAO,MAAM,UAAU,sCAAgE,CAAA;AACvF,eAAO,MAAM,kBAAkB,8CAC+C,CAAA;AAE9E,eAAO,MAAM,aAAa,yCAAsE,CAAA;AAChG,eAAO,MAAM,eAAe,2CAC4C,CAAA;AACxE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwE,CAAA;AAEjG,qBAAa,mBAAoB,SAAQ,KAAK;IAC7C,QAAQ,CAAC,IAAI,sBAAqB;IAElC,YAAY,GAAG,KAAK,EAAE,uBAAuB,EAG5C;CACD;AAED,qBAAa,qBAAsB,SAAQ,KAAK;IAC/C,QAAQ,CAAC,IAAI,6BAA4B;IAEzC,YAAY,GAAG,KAAK,EAAE,yBAAyB,EAG9C;CACD;AAED,qBAAa,6BAA8B,SAAQ,KAAK;IACvD,QAAQ,CAAC,IAAI,sCAAqC;IAElD,YAAY,GAAG,KAAK,EAAE,iCAAiC,EAGtD;CACD;AAED,eAAO,MAAM,MAAM,+BAAqD,CAAA;AACxE,eAAO,MAAM,SAAS,kCAA2D,CAAA;AAEjF,eAAO,MAAM,wBAAwB,uDAER,CAAA;AAC7B,eAAO,MAAM,gCAAgC,uDAER,CAAA;AACrC,eAAO,MAAM,eAAe,8CAC+C,CAAA;AAC3E,eAAO,MAAM,sBAAsB,qDACsD,CAAA;AACzF,eAAO,MAAM,yBAAyB,wDAER,CAAA;AAC9B,eAAO,MAAM,qBAAqB,oDACqD,CAAA;AACvF,eAAO,MAAM,qBAAqB,oDACqD,CAAA;AACvF,eAAO,MAAM,oBAAoB,mDACoD,CAAA;AAErF,eAAO,MAAM,cAAc,0CAC8C,CAAA;AACzE,eAAO,MAAM,wBAAwB,oDAER,CAAA;AAC7B,eAAO,MAAM,YAAY,wCAAuE,CAAA;AAChG,eAAO,MAAM,aAAa,yCAAyE,CAAA;AACnG,eAAO,MAAM,OAAO;;CAAoE,CAAA;AAExF,eAAO,MAAM,iBAAiB,2CAC4C,CAAA;AAC1E,eAAO,MAAM,qBAAqB,+CACgD,CAAA;AAClF,eAAO,MAAM,YAAY,sCAAkE,CAAA;AAC3F,eAAO,MAAM,YAAY,sCAAkE,CAAA;AAC3F,eAAO,MAAM,YAAY,sCAAkE,CAAA;AAC3F,eAAO,MAAM,eAAe,yCAAwE,CAAA;AACpG,eAAO,MAAM,aAAa,uCAAoE,CAAA;AAC9F,eAAO,MAAM,eAAe,yCAAwE,CAAA;AAEpG,OAAO,EAAE,YAAY,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAA"}
|
package/dist/cli/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as runCli, t as parseArgs } from "../_chunks/cli-
|
|
1
|
+
import { n as runCli, t as parseArgs } from "../_chunks/cli-TjsvOgl-.js";
|
|
2
2
|
export { parseArgs, runCli };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"preview-bindings.d.ts","sourceRoot":"","sources":["../../src/cli/preview-bindings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,gBAAgB,EAAsC,MAAM,eAAe,CAAA;AAEzF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACtD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAEnD,MAAM,WAAW,wBAAwB;IACxC,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,sBAAsB;IACtC,SAAS,EAAE,MAAM,CAAA;IACjB,eAAe,EAAE,MAAM,EAAE,CAAA;IACzB,eAAe,EAAE,MAAM,EAAE,CAAA;CACzB;AAWD,MAAM,WAAW,qBAAqB;IACrC,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,EAAE,CAAA;IAC1B,KAAK,EAAE,MAAM,EAAE,CAAA;IACf,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;CAC1B;AAED,MAAM,WAAW,4BAA4B;IAC5C,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,qBAAqB,EAAE,CAAA;IAC7B,OAAO,EAAE,MAAM,CAAA;IACf,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,QAAQ,EAAE,MAAM,EAAE,CAAA;CAClB;AAED,MAAM,WAAW,iCAAiC;IACjD,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,cAAc,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,aAAa,CAAA;IACnB,UAAU,CAAC,EAAE,gBAAgB,CAAA;CAC7B;
|
|
1
|
+
{"version":3,"file":"preview-bindings.d.ts","sourceRoot":"","sources":["../../src/cli/preview-bindings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,gBAAgB,EAAsC,MAAM,eAAe,CAAA;AAEzF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACtD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAEnD,MAAM,WAAW,wBAAwB;IACxC,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,sBAAsB;IACtC,SAAS,EAAE,MAAM,CAAA;IACjB,eAAe,EAAE,MAAM,EAAE,CAAA;IACzB,eAAe,EAAE,MAAM,EAAE,CAAA;CACzB;AAWD,MAAM,WAAW,qBAAqB;IACrC,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,EAAE,CAAA;IAC1B,KAAK,EAAE,MAAM,EAAE,CAAA;IACf,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;CAC1B;AAED,MAAM,WAAW,4BAA4B;IAC5C,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,qBAAqB,EAAE,CAAA;IAC7B,OAAO,EAAE,MAAM,CAAA;IACf,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,QAAQ,EAAE,MAAM,EAAE,CAAA;CAClB;AAED,MAAM,WAAW,iCAAiC;IACjD,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,cAAc,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,aAAa,CAAA;IACnB,UAAU,CAAC,EAAE,gBAAgB,CAAA;CAC7B;AAmUD,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,sBAAsB,GAAG,IAAI,CAwDpF;AAED;;;;;;GAMG;AACH,wBAAgB,4BAA4B,CAAC,UAAU,EAAE,MAAM,GAAG,wBAAwB,EAAE,CAsB3F;AAmND,wBAAsB,0BAA0B,CAC/C,OAAO,EAAE,iCAAiC,GACxC,OAAO,CAAC,4BAA4B,CAAC,CAsGvC"}
|