UNPKG

@storm-software/cloudflare-tools

Version:

A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.

32 lines (30 loc) 828 B
import { BaseExecutorSchema } from "@storm-software/workspace-tools/base/base-executor.schema"; export interface ServeExecutorSchema extends BaseExecutorSchema { name?: string; noBundle?: boolean; env?: string; compatibilityDate?: string; compatibilityFlags?: string[]; latest?: boolean; ip?: string; port?: number; inspectorPort?: number; routes?: string[]; host?: string; localProtocol?: "http" | "https"; localUpstream?: string; assets?: string; site?: string; siteInclude?: string[]; siteExclude?: string[]; upstreamProtocol?: "http" | "https"; var?: string[]; define?: string[]; tsconfig?: string; minify?: boolean; nodeCompat?: boolean; persistTo?: string; remote?: boolean; testScheduled?: boolean; logLevel?: "debug" | "info" | "log" | "warn" | "error" | "none"; }