@powerlines/plugin-env 0.16.122 → 0.16.123

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.
@@ -1 +1 @@
1
- {"version":3,"file":"env-builtin.mjs","names":[],"sources":["../../src/components/env-builtin.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n code,\n computed,\n For,\n Show,\n splitProps\n} from \"@alloy-js/core\";\nimport {\n ClassDeclaration,\n ClassMethod,\n ElseIfClause,\n FunctionDeclaration,\n IfStatement,\n NewExpression,\n TypeDeclaration,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport {\n ReflectionClass,\n ReflectionKind,\n ReflectionProperty\n} from \"@powerlines/deepkit/vendor/type\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport { refkey } from \"@powerlines/plugin-alloy/helpers/refkey\";\nimport { ComponentProps } from \"@powerlines/plugin-alloy/types/components\";\nimport {\n BuiltinFile,\n BuiltinFileProps\n} from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport type { InterfaceDeclarationProps } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { InterfaceDeclaration } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { ObjectDeclaration } from \"@powerlines/plugin-alloy/typescript/components/object-declaration\";\nimport {\n TSDoc,\n TSDocExample,\n TSDocLink,\n TSDocParam,\n TSDocRemarks,\n TSDocReturns,\n TSDocThrows\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { getUnique } from \"@stryke/helpers/get-unique\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { loadEnvFromContext } from \"../helpers/load\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Generates the environment configuration typescript definition for the Powerlines project.\n */\nexport function EnvTypeDefinition(\n props: Omit<InterfaceDeclarationProps, \"name\">\n) {\n const [{ defaultValue, reflection }] = splitProps(props, [\n \"defaultValue\",\n \"reflection\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <>\n <InterfaceDeclaration\n name=\" EnvBase\"\n defaultValue={defaultValue}\n reflection={reflection}\n export\n />\n <Spacing />\n <TSDoc heading=\"The environment configuration object with prefixed keys.\">\n <TSDocRemarks>\n {`The \\`Env\\` type extends the \\`EnvBase\\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.`}\n </TSDocRemarks>\n </TSDoc>\n <TypeDeclaration name=\"Env\" export>\n {code` {\n [Key in keyof EnvBase as Key ${getUnique(\n context.config.env.prefix.map(\n prefix => `| \\`${prefix.replace(/_$/g, \"\")}_\\${Key}\\``\n )\n ).join(\" \")}]: EnvBase[Key];\n}\n`}\n </TypeDeclaration>\n <Spacing />\n </>\n );\n}\n\ninterface ConfigPropertyConditionalProps extends ComponentProps {\n context: EnvPluginContext;\n name: string;\n}\n\nfunction ConfigPropertyConditional(props: ConfigPropertyConditionalProps) {\n const [{ context, name }] = splitProps(props, [\"context\", \"name\"]);\n\n return code`propertyName === \"${name}\" || propertyName.replace(/^(${getUnique(\n context.config.env.prefix\n .sort((a, b) =>\n a.startsWith(b) ? -1 : b.startsWith(a) ? 1 : a.localeCompare(b)\n )\n .map(prefix => `${prefix.replace(/_$/, \"\")}_`)\n ).join(\"|\")})/g, \"\").toLowerCase().replace(/[\\\\s\\\\-_]+/g, \"\") === \"${name\n .toLowerCase()\n .replace(/[\\s\\-_]+/g, \"\")}\"`;\n}\n\ninterface ConfigPropertyProps extends ComponentProps {\n index: number;\n context: EnvPluginContext;\n property: ReflectionProperty;\n}\n\nfunction ConfigPropertyGet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nfunction ConfigPropertySet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nexport interface EnvBuiltinProps extends Omit<BuiltinFileProps, \"id\"> {\n defaultConfig?: Children;\n reflection: ReflectionClass<any>;\n}\n\nconst createEnvRefkey = refkey(\"createEnv\");\nconst envRefkey = refkey(\"env\");\nconst envSerializerRefkey = refkey(\"EnvSerializer\");\n\n/**\n * Generates the environment configuration module for the Powerlines project.\n */\nexport function EnvBuiltin(props: EnvBuiltinProps) {\n const [{ defaultConfig, reflection, children }, rest] = splitProps(props, [\n \"defaultConfig\",\n \"reflection\",\n \"children\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n const defaultValue = computed(\n () => context && loadEnvFromContext(context, process.env)\n );\n\n const envInstance = computed(() => {\n const result = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n description: `The initial environment configuration state for the ${titleCase(\n context?.config?.name\n )} project.`,\n types: []\n },\n reflection\n );\n\n result\n .getProperties()\n .filter(\n property => property.isRuntime() || property.getTags().runtime === true\n )\n .forEach(property => {\n result.removeProperty(property.getNameAsString());\n });\n\n return result;\n });\n\n const reflectionGetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n const reflectionSetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored() && !property.isReadonly())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n\n return (\n <BuiltinFile\n id=\"env\"\n description=\"The environment configuration module provides an interface to define environment configuration parameters.\"\n {...rest}\n imports={defu(\n {\n \"@powerlines/deepkit/vendor/type\": [\n \"serializeFunction\",\n \"deserializeFunction\",\n \"ReflectionKind\",\n \"Serializer\",\n \"TemplateState\",\n \"Type\",\n \"TypeProperty\",\n \"TypePropertySignature\"\n ]\n },\n rest.imports ?? {}\n )}>\n <Show when={Boolean(reflection)}>\n <EnvTypeDefinition\n defaultValue={defaultValue}\n reflection={reflection}\n />\n <hbr />\n <hbr />\n </Show>\n\n <ObjectDeclaration\n name=\"initialEnv\"\n type=\"Partial<EnvBase>\"\n defaultValue={defaultValue}\n reflection={envInstance}\n export\n const\n doc=\"The initial environment configuration object values for the runtime.\"\n />\n <Spacing />\n\n <TSDoc heading=\"The environment configuration serializer for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <ClassDeclaration\n refkey={envSerializerRefkey}\n name=\"EnvSerializer\"\n extends=\"Serializer\"\n export>\n <ClassMethod\n name=\"constructor\"\n public\n doc=\"Initializes a new instance of the `EnvSerializer` class.\">\n {code`super(\"env\");\n\n this.deserializeRegistry.register(\n ReflectionKind.boolean,\n (type: Type, state: TemplateState) => {\n state.addSetter(\n \\`typeof \\${state.accessor.toString()} !== \"boolean\" ? \\${state.accessor.toString()} === 1 || \\${state.accessor.toString()} === \"1\" || \\${state.accessor.toString()}.toLowerCase() === \"t\" || \\${state.accessor.toString()}.toLowerCase() === \"true\" || \\${state.accessor.toString()}.toLowerCase() === \"y\" || \\${state.accessor.toString()}.toLowerCase() === \"yes\" : \\${state.accessor.toString()}\\`\n );\n }\n ); `}\n </ClassMethod>\n </ClassDeclaration>\n <Spacing />\n\n <TSDoc heading=\"A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n name=\"envSerializer\"\n export={false}\n const\n initializer={<NewExpression args={[]} target=\"EnvSerializer\" />}\n />\n <Spacing />\n\n <TSDoc heading=\"Serialize a environment configuration object to JSON data objects (not a JSON string).\">\n <TSDocRemarks>\n {`The resulting JSON object can be stringified using \\`JSON.stringify()\\`.`}\n </TSDocRemarks>\n <TSDocExample>{`const json = serializeEnv(env);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when serialization or validation fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"serializeEnv\"\n export\n const\n initializer={\"serializeFunction<EnvBase>(envSerializer)\"}\n />\n <Spacing />\n\n <TSDoc heading=\"Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.\">\n <TSDocRemarks>\n {`Types that are already correct will be used as-is.`}\n </TSDocRemarks>\n <TSDocExample>{`const env = deserializeEnv(json);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when deserialization fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"deserializeEnv\"\n export\n const\n initializer=\"deserializeFunction<EnvBase>(envSerializer)\"\n />\n <Spacing />\n\n <TSDoc heading=\"Initializes the Powerlines environment configuration module.\">\n <TSDocRemarks>\n {`This function initializes the Powerlines environment configuration object.`}\n </TSDocRemarks>\n <TSDocParam name=\"environmentConfig\">\n {`The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`}\n </TSDocParam>\n <TSDocReturns>\n {`The initialized Powerlines configuration object.`}\n </TSDocReturns>\n </TSDoc>\n <Show when={Boolean(context?.entryPath)}>\n <FunctionDeclaration\n refkey={createEnvRefkey}\n async={false}\n export\n name=\"createEnv\"\n parameters={[\n {\n name: \"environmentConfig\",\n type: `Partial<Env>`,\n optional: false,\n default: \"{}\"\n }\n ]}\n returnType=\"Env\">\n {code`\n return new Proxy<Env>(\n deserializeEnv({\n ...initialEnv,\n ...environmentConfig\n }) as Env,\n {\n get: (target: EnvBase, propertyName: string) => { `}\n <hbr />\n\n <For each={reflectionGetProperties}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertyGet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n {code`\n return undefined;\n }, `}\n\n <Spacing />\n {code` set: (target: EnvBase, propertyName: string, newValue: any) => { `}\n <hbr />\n\n <For each={reflectionSetProperties} ender={code` else `}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertySet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n\n <hbr />\n {code`return false;\n }\n }\n );\n`}\n </FunctionDeclaration>\n </Show>\n <Spacing />\n <hbr />\n\n <TSDoc heading=\"The environment configuration object.\">\n <TSDocRemarks>\n {`This object provides access to the environment configuration parameters in the application runtime.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n refkey={envRefkey}\n name=\"env\"\n type=\"Env\"\n export\n const\n initializer={\n <>{code`createEnv(${defaultConfig || \"{}\"} as Partial<Env>);`}</>\n }\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isCI\"\n doc=\"Detect if the application is running in a continuous integration (CI) environment.\"\n initializer={code`Boolean(\n env.CI ||\n env.RUN_ID ||\n env.AGOLA_GIT_REF ||\n env.AC_APPCIRCLE ||\n env.APPVEYOR ||\n env.CODEBUILD ||\n env.TF_BUILD ||\n env.bamboo_planKey ||\n env.BITBUCKET_COMMIT ||\n env.BITRISE_IO ||\n env.BUDDY_WORKSPACE_ID ||\n env.BUILDKITE ||\n env.CIRCLECI ||\n env.CIRRUS_CI ||\n env.CF_BUILD_ID ||\n env.CM_BUILD_ID ||\n env.CI_NAME ||\n env.DRONE ||\n env.DSARI ||\n env.EARTHLY_CI ||\n env.EAS_BUILD ||\n env.GERRIT_PROJECT ||\n env.GITEA_ACTIONS ||\n env.GITHUB_ACTIONS ||\n env.GITLAB_CI ||\n env.GOCD ||\n env.BUILDER_OUTPUT ||\n env.HARNESS_BUILD_ID ||\n env.JENKINS_URL ||\n env.LAYERCI ||\n env.MAGNUM ||\n env.NETLIFY ||\n env.NEVERCODE ||\n env.PROW_JOB_ID ||\n env.RELEASE_BUILD_ID ||\n env.RENDER ||\n env.SAILCI ||\n env.HUDSON ||\n env.SCREWDRIVER ||\n env.SEMAPHORE ||\n env.SOURCEHUT ||\n env.STRIDER ||\n env.TASK_ID ||\n env.RUN_ID ||\n env.TEAMCITY_VERSION ||\n env.TRAVIS ||\n env.VELA ||\n env.NOW_BUILDER ||\n env.APPCENTER_BUILD_ID ||\n env.CI_XCODE_PROJECT ||\n env.XCS || false\n );\n `}\n />\n <Spacing />\n\n <TSDoc heading=\"Detect the \\`mode\\` of the current runtime environment.\">\n <TSDocRemarks>\n {code`The \\`mode\\` is determined by the \\`MODE\\` environment variable, or falls back to the \\`NEXT_PUBLIC_VERCEL_ENV\\`, \\`NODE_ENV\\`, or defaults to \\`production\\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:\n - \\`production\\`\n - \\`test\\`\n - \\`development\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"mode\"\n initializer={code`String(env.MODE) || \"production\"; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isProduction\"\n doc='Detect if the application is running in `\"production\"` mode'\n initializer={code`[\"prd\", \"prod\", \"production\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isTest\"\n doc='Detect if the application is running in `\"test\"` mode'\n initializer={code`[\"tst\", \"test\", \"testing\", \"stg\", \"stage\", \"staging\"].includes(mode.toLowerCase()) || env.TEST; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDevelopment\"\n doc='Detect if the application is running in `\"development\"` mode'\n initializer={code`[\"dev\", \"development\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDebug\"\n doc=\"Detect if the application is currently being debugged\"\n initializer={code`Boolean(isDevelopment && env.DEBUG); `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"env-builtin.mjs","names":[],"sources":["../../src/components/env-builtin.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n code,\n computed,\n For,\n Show,\n splitProps\n} from \"@alloy-js/core\";\nimport {\n InterfaceDeclaration as BaseInterfaceDeclaration,\n ClassDeclaration,\n ClassMethod,\n ElseIfClause,\n FunctionDeclaration,\n IfStatement,\n InterfaceMember,\n NewExpression,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport {\n ReflectionClass,\n ReflectionKind,\n ReflectionProperty\n} from \"@powerlines/deepkit/vendor/type\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport { refkey } from \"@powerlines/plugin-alloy/helpers/refkey\";\nimport { ComponentProps } from \"@powerlines/plugin-alloy/types/components\";\nimport {\n BuiltinFile,\n BuiltinFileProps\n} from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport type { InterfaceDeclarationProps } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { InterfaceDeclaration } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { ObjectDeclaration } from \"@powerlines/plugin-alloy/typescript/components/object-declaration\";\nimport {\n TSDoc,\n TSDocExample,\n TSDocLink,\n TSDocParam,\n TSDocRemarks,\n TSDocReturns,\n TSDocThrows\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { TSDocReflectionProperty } from \"@powerlines/plugin-alloy/typescript/components/tsdoc-reflection\";\nimport { getUnique } from \"@stryke/helpers/get-unique\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { loadEnvFromContext } from \"../helpers/load\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Generates the environment configuration typescript definition for the Powerlines project.\n */\nexport function EnvTypeDefinition(\n props: Omit<InterfaceDeclarationProps, \"name\">\n) {\n const [{ defaultValue, reflection }] = splitProps(props, [\n \"defaultValue\",\n \"reflection\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <>\n <InterfaceDeclaration\n name=\"UnprefixedEnv\"\n defaultValue={defaultValue}\n reflection={reflection}\n export\n />\n <Spacing />\n <TSDoc heading=\"The environment configuration object with prefixed keys.\">\n <TSDocRemarks>\n {`The \\`Env\\` type extends the \\`UnprefixedEnv\\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.`}\n </TSDocRemarks>\n </TSDoc>\n <BaseInterfaceDeclaration name=\"Env\" export extends=\"UnprefixedEnv\">\n <For\n each={getUnique(context.config.env.prefix).map(prefix =>\n prefix.replace(/_$/, \"\")\n )}\n doubleHardline>\n {prefix => (\n <For\n each={\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored()) ?? []\n }\n doubleHardline>\n {property => (\n <>\n <TSDocReflectionProperty reflection={property} />\n <InterfaceMember\n name={`${prefix}_${property.getNameAsString()}`}\n type={`UnprefixedEnv[\"${property.getNameAsString()}\"]`}\n readonly={property.isReadonly()}\n />\n </>\n )}\n </For>\n )}\n </For>\n </BaseInterfaceDeclaration>\n <Spacing />\n </>\n );\n}\n\ninterface ConfigPropertyConditionalProps extends ComponentProps {\n context: EnvPluginContext;\n name: string;\n}\n\nfunction ConfigPropertyConditional(props: ConfigPropertyConditionalProps) {\n const [{ context, name }] = splitProps(props, [\"context\", \"name\"]);\n\n return code`propertyName === \"${name}\" || propertyName.replace(/^(${getUnique(\n context.config.env.prefix\n .sort((a, b) =>\n a.startsWith(b) ? -1 : b.startsWith(a) ? 1 : a.localeCompare(b)\n )\n .map(prefix => `${prefix.replace(/_$/, \"\")}_`)\n ).join(\"|\")})/g, \"\").toLowerCase().replace(/[\\\\s\\\\-_]+/g, \"\") === \"${name\n .toLowerCase()\n .replace(/[\\s\\-_]+/g, \"\")}\"`;\n}\n\ninterface ConfigPropertyProps extends ComponentProps {\n index: number;\n context: EnvPluginContext;\n property: ReflectionProperty;\n}\n\nfunction ConfigPropertyGet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nfunction ConfigPropertySet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nexport interface EnvBuiltinProps extends Omit<BuiltinFileProps, \"id\"> {\n defaultConfig?: Children;\n reflection: ReflectionClass<any>;\n}\n\nconst createEnvRefkey = refkey(\"createEnv\");\nconst envRefkey = refkey(\"env\");\nconst envSerializerRefkey = refkey(\"EnvSerializer\");\n\n/**\n * Generates the environment configuration module for the Powerlines project.\n */\nexport function EnvBuiltin(props: EnvBuiltinProps) {\n const [{ defaultConfig, reflection, children }, rest] = splitProps(props, [\n \"defaultConfig\",\n \"reflection\",\n \"children\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n const defaultValue = computed(\n () => context && loadEnvFromContext(context, process.env)\n );\n\n const envInstance = computed(() => {\n const result = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n description: `The initial environment configuration state for the ${titleCase(\n context?.config?.name\n )} project.`,\n types: []\n },\n reflection\n );\n\n result\n .getProperties()\n .filter(\n property => property.isRuntime() || property.getTags().runtime === true\n )\n .forEach(property => {\n result.removeProperty(property.getNameAsString());\n });\n\n return result;\n });\n\n const reflectionGetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n const reflectionSetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored() && !property.isReadonly())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n\n return (\n <BuiltinFile\n id=\"env\"\n description=\"The environment configuration module provides an interface to define environment configuration parameters.\"\n {...rest}\n imports={defu(\n {\n \"@powerlines/deepkit/vendor/type\": [\n \"serializeFunction\",\n \"deserializeFunction\",\n \"ReflectionKind\",\n \"Serializer\",\n \"NamingStrategy\",\n \"TemplateState\",\n \"Type\",\n \"TypeProperty\",\n \"TypePropertySignature\"\n ]\n },\n rest.imports ?? {}\n )}>\n <Show when={Boolean(reflection)}>\n <EnvTypeDefinition\n defaultValue={defaultValue}\n reflection={reflection}\n />\n <hbr />\n <hbr />\n </Show>\n\n <ObjectDeclaration\n name=\"initialEnv\"\n type=\"Partial<Env>\"\n defaultValue={defaultValue}\n reflection={envInstance}\n export\n const\n doc=\"The initial environment configuration object values for the runtime.\"\n />\n <Spacing />\n\n <TSDoc heading=\"The environment configuration serializer for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <ClassDeclaration\n refkey={envSerializerRefkey}\n name=\"EnvSerializer\"\n extends=\"Serializer\"\n export>\n <ClassMethod\n name=\"constructor\"\n public\n doc=\"Initializes a new instance of the `EnvSerializer` class.\">\n {code`super(\"env\");\n\n this.deserializeRegistry.register(\n ReflectionKind.boolean,\n (type: Type, state: TemplateState) => {\n state.addSetter(\n \\`typeof \\${state.accessor.toString()} !== \"boolean\" ? \\${state.accessor.toString()} === 1 || \\${state.accessor.toString()} === \"1\" || \\${state.accessor.toString()}.toLowerCase() === \"t\" || \\${state.accessor.toString()}.toLowerCase() === \"true\" || \\${state.accessor.toString()}.toLowerCase() === \"y\" || \\${state.accessor.toString()}.toLowerCase() === \"yes\" : \\${state.accessor.toString()}\\`\n );\n }\n ); `}\n </ClassMethod>\n </ClassDeclaration>\n <Spacing />\n\n <VarDeclaration\n name=\"envNamingStrategy\"\n const\n doc=\"The environment naming strategy for the runtime.\"\n initializer={code`new class extends NamingStrategy {\n constructor() {\n super(\"env\");\n }\n\n getPropertyName(type: TypeProperty | TypePropertySignature, forSerializer: string): string | undefined {\n const name = super.getPropertyName(type, forSerializer);\n if (!name) {\n return name;\n }\n\n return name.replace(/^(${getUnique(\n context.config.env.prefix\n )\n .map(prefix => prefix.replace(/_$/, \"\"))\n .join(\"|\")})_/, \"\");\n }\n }; `}\n />\n <Spacing />\n\n <TSDoc heading=\"A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n name=\"envSerializer\"\n const\n initializer={<NewExpression args={[]} target=\"EnvSerializer\" />}\n />\n <Spacing />\n\n <VarDeclaration\n name=\"_serializeEnv\"\n const\n initializer={\"serializeFunction<Env>(envSerializer, envNamingStrategy)\"}\n />\n <Spacing />\n <TSDoc heading=\"Serialize a environment configuration object to JSON data objects (not a JSON string).\">\n <TSDocRemarks>\n {`The resulting JSON object can be stringified using \\`JSON.stringify()\\`.`}\n </TSDocRemarks>\n <TSDocExample>{`const json = serializeEnv(env);`}</TSDocExample>\n <Spacing />\n <TSDocParam name=\"input\">\n {`The environment configuration object to serialize.`}\n </TSDocParam>\n <TSDocReturns>\n {`The serialized environment configuration as JSON data objects.`}\n </TSDocReturns>\n <TSDocThrows>\n {`ValidationError when serialization or validation fails.`}\n </TSDocThrows>\n </TSDoc>\n <FunctionDeclaration\n name=\"serializeEnv\"\n export\n parameters={[\n {\n name: \"input\",\n type: \"Env\"\n }\n ]}>\n {code` return _serializeEnv(input, { loosely: true }); `}\n </FunctionDeclaration>\n <Spacing />\n\n <VarDeclaration\n name=\"_deserializeEnv\"\n const\n initializer=\"deserializeFunction<Env>(envSerializer, envNamingStrategy)\"\n />\n <Spacing />\n <TSDoc heading=\"Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.\">\n <TSDocRemarks>\n {`Types that are already correct will be used as-is.`}\n </TSDocRemarks>\n <TSDocExample>{`const env = deserializeEnv(json);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when deserialization fails.`}\n </TSDocThrows>\n </TSDoc>\n <FunctionDeclaration\n name=\"deserializeEnv\"\n export\n parameters={[\n {\n name: \"input\",\n type: \"Env\"\n }\n ]}>\n {code` return _deserializeEnv(input, { loosely: true }); `}\n </FunctionDeclaration>\n <Spacing />\n\n <TSDoc heading=\"Initializes the Powerlines environment configuration module.\">\n <TSDocRemarks>\n {`This function initializes the Powerlines environment configuration object.`}\n </TSDocRemarks>\n <TSDocParam name=\"environmentConfig\">\n {`The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`}\n </TSDocParam>\n <TSDocReturns>\n {`The initialized Powerlines configuration object.`}\n </TSDocReturns>\n </TSDoc>\n <Show when={Boolean(context?.entryPath)}>\n <FunctionDeclaration\n refkey={createEnvRefkey}\n async={false}\n export\n name=\"createEnv\"\n parameters={[\n {\n name: \"environmentConfig\",\n type: `Partial<Env>`,\n optional: false,\n default: \"{}\"\n }\n ]}\n returnType=\"Env\">\n {code`\n return new Proxy<Env>(\n deserializeEnv({\n ...initialEnv,\n ...environmentConfig\n } as Env),\n {\n get: (target: UnprefixedEnv, propertyName: string) => { `}\n <hbr />\n\n <For each={reflectionGetProperties}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertyGet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n {code`\n return undefined;\n }, `}\n\n <Spacing />\n {code` set: (target: UnprefixedEnv, propertyName: string, newValue: any) => { `}\n <hbr />\n <For each={reflectionSetProperties} ender={code` else `}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertySet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n\n <hbr />\n {code`return false;\n }\n }\n );\n`}\n </FunctionDeclaration>\n </Show>\n <Spacing />\n <hbr />\n\n <TSDoc heading=\"The environment configuration object.\">\n <TSDocRemarks>\n {`This object provides access to the environment configuration parameters in the application runtime.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n refkey={envRefkey}\n name=\"env\"\n type=\"Env\"\n export\n const\n initializer={\n <>{code`createEnv(${defaultConfig || \"{}\"} as Partial<Env>);`}</>\n }\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isCI\"\n doc=\"Detect if the application is running in a continuous integration (CI) environment.\"\n initializer={code`Boolean(\n env.CI ||\n env.RUN_ID ||\n env.AGOLA_GIT_REF ||\n env.AC_APPCIRCLE ||\n env.APPVEYOR ||\n env.CODEBUILD ||\n env.TF_BUILD ||\n env.bamboo_planKey ||\n env.BITBUCKET_COMMIT ||\n env.BITRISE_IO ||\n env.BUDDY_WORKSPACE_ID ||\n env.BUILDKITE ||\n env.CIRCLECI ||\n env.CIRRUS_CI ||\n env.CF_BUILD_ID ||\n env.CM_BUILD_ID ||\n env.CI_NAME ||\n env.DRONE ||\n env.DSARI ||\n env.EARTHLY_CI ||\n env.EAS_BUILD ||\n env.GERRIT_PROJECT ||\n env.GITEA_ACTIONS ||\n env.GITHUB_ACTIONS ||\n env.GITLAB_CI ||\n env.GOCD ||\n env.BUILDER_OUTPUT ||\n env.HARNESS_BUILD_ID ||\n env.JENKINS_URL ||\n env.LAYERCI ||\n env.MAGNUM ||\n env.NETLIFY ||\n env.NEVERCODE ||\n env.PROW_JOB_ID ||\n env.RELEASE_BUILD_ID ||\n env.RENDER ||\n env.SAILCI ||\n env.HUDSON ||\n env.SCREWDRIVER ||\n env.SEMAPHORE ||\n env.SOURCEHUT ||\n env.STRIDER ||\n env.TASK_ID ||\n env.RUN_ID ||\n env.TEAMCITY_VERSION ||\n env.TRAVIS ||\n env.VELA ||\n env.NOW_BUILDER ||\n env.APPCENTER_BUILD_ID ||\n env.CI_XCODE_PROJECT ||\n env.XCS || false\n ); `}\n />\n <Spacing />\n\n <TSDoc heading=\"Detect the \\`mode\\` of the current runtime environment.\">\n <TSDocRemarks>\n {code`The \\`mode\\` is determined by the \\`MODE\\` environment variable, or falls back to the \\`NEXT_PUBLIC_VERCEL_ENV\\`, \\`NODE_ENV\\`, or defaults to \\`production\\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:\n - \\`production\\`\n - \\`test\\`\n - \\`development\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"mode\"\n initializer={code`String(env.MODE) || \"production\"; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isProduction\"\n doc='Detect if the application is running in `\"production\"` mode'\n initializer={code`[\"prd\", \"prod\", \"production\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isTest\"\n doc='Detect if the application is running in `\"test\"` mode'\n initializer={code`[\"tst\", \"test\", \"testing\", \"stg\", \"stage\", \"staging\"].includes(mode.toLowerCase()) || env.TEST; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDevelopment\"\n doc='Detect if the application is running in `\"development\"` mode'\n initializer={code`[\"dev\", \"development\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDebug\"\n doc=\"Detect if the application is currently being debugged\"\n initializer={code`Boolean(isDevelopment && env.DEBUG); `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}
@@ -4,4 +4,6 @@ const require_components_env_builtin = require('./env-builtin.cjs');
4
4
 
5
5
  exports.EnvBuiltin = require_components_env_builtin.EnvBuiltin;
6
6
  exports.EnvDocsFile = require_components_docs.EnvDocsFile;
7
- exports.EnvTypeDefinition = require_components_env_builtin.EnvTypeDefinition;
7
+ exports.EnvTypeDefinition = require_components_env_builtin.EnvTypeDefinition;
8
+ exports.__ΩEnvBuiltinProps = require_components_env_builtin.__ΩEnvBuiltinProps;
9
+ exports.__ΩEnvDocsFileProps = require_components_docs.__ΩEnvDocsFileProps;
@@ -1,4 +1,4 @@
1
- import { EnvDocsFile } from "./docs.mjs";
2
- import { EnvBuiltin, EnvTypeDefinition } from "./env-builtin.mjs";
1
+ import { EnvDocsFile, __ΩEnvDocsFileProps } from "./docs.mjs";
2
+ import { EnvBuiltin, EnvTypeDefinition, __ΩEnvBuiltinProps } from "./env-builtin.mjs";
3
3
 
4
- export { EnvBuiltin, EnvDocsFile, EnvTypeDefinition };
4
+ export { EnvBuiltin, EnvDocsFile, EnvTypeDefinition, __ΩEnvBuiltinProps, __ΩEnvDocsFileProps };
@@ -8,7 +8,7 @@ let _stryke_string_format_kebab_case = require("@stryke/string-format/kebab-case
8
8
  let _stryke_type_checks_is_set_object = require("@stryke/type-checks/is-set-object");
9
9
  let c12 = require("c12");
10
10
  let defu = require("defu");
11
- defu = require_runtime.__toESM(defu);
11
+ defu = require_runtime.__toESM(defu, 1);
12
12
  let powerlines_constants = require("powerlines/constants");
13
13
 
14
14
  //#region src/helpers/load.ts
@@ -7,7 +7,7 @@ let _powerlines_deepkit_resolve_reflections = require("@powerlines/deepkit/resol
7
7
  let _powerlines_deepkit_schemas_reflection = require("@powerlines/deepkit/schemas/reflection");
8
8
  let _powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type");
9
9
  let _stryke_capnp = require("@stryke/capnp");
10
- _stryke_capnp = require_runtime.__toESM(_stryke_capnp);
10
+ _stryke_capnp = require_runtime.__toESM(_stryke_capnp, 1);
11
11
  let _stryke_fs_buffer = require("@stryke/fs/buffer");
12
12
  let _stryke_path_join_paths = require("@stryke/path/join-paths");
13
13
  let _stryke_type_checks_is_empty_object = require("@stryke/type-checks/is-empty-object");
package/dist/index.cjs CHANGED
@@ -1,5 +1,6 @@
1
1
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
2
2
  const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
3
+ const require_types_plugin = require('./types/plugin.cjs');
3
4
  const require_helpers_reflect = require('./helpers/reflect.cjs');
4
5
  const require_helpers_persistence = require('./helpers/persistence.cjs');
5
6
  const require_helpers_load = require('./helpers/load.cjs');
@@ -9,19 +10,19 @@ const require_components_docs = require('./components/docs.cjs');
9
10
  const require_components_env_builtin = require('./components/env-builtin.cjs');
10
11
  const require_babel_plugin = require('./babel/plugin.cjs');
11
12
  let _powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type");
12
- let _stryke_env_types = require("@stryke/env/types");
13
13
  let defu = require("defu");
14
14
  defu = require_runtime.__toESM(defu);
15
+ let powerlines_constants = require("powerlines/constants");
15
16
  let _stryke_path_join = require("@stryke/path/join");
16
17
  let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
17
18
  let _stryke_helpers_get_unique = require("@stryke/helpers/get-unique");
18
- let _powerlines_plugin_alloy = require("@powerlines/plugin-alloy");
19
- _powerlines_plugin_alloy = require_runtime.__toESM(_powerlines_plugin_alloy);
20
19
  let _powerlines_plugin_alloy_render = require("@powerlines/plugin-alloy/render");
21
20
  let _powerlines_plugin_automd = require("@powerlines/plugin-automd");
22
21
  _powerlines_plugin_automd = require_runtime.__toESM(_powerlines_plugin_automd);
23
22
  let _powerlines_plugin_babel = require("@powerlines/plugin-babel");
24
23
  _powerlines_plugin_babel = require_runtime.__toESM(_powerlines_plugin_babel);
24
+ let _powerlines_plugin_deepkit = require("@powerlines/plugin-deepkit");
25
+ _powerlines_plugin_deepkit = require_runtime.__toESM(_powerlines_plugin_deepkit);
25
26
  let _stryke_convert_parse_type_definition = require("@stryke/convert/parse-type-definition");
26
27
  let _stryke_convert_to_array = require("@stryke/convert/to-array");
27
28
  let _stryke_fs_exists = require("@stryke/fs/exists");
@@ -29,12 +30,16 @@ let _stryke_string_format_constant_case = require("@stryke/string-format/constan
29
30
  let _stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
30
31
 
31
32
  //#region src/index.tsx
33
+ function __assignType(fn, args) {
34
+ fn.__type = args;
35
+ return fn;
36
+ }
32
37
  /**
33
38
  * A Powerlines plugin to inject environment variables into the source code.
34
39
  */
35
- const plugin = (options = {}) => {
40
+ const plugin = __assignType((options = {}) => {
36
41
  return [
37
- (0, _powerlines_plugin_alloy.default)(options.alloy),
42
+ (0, _powerlines_plugin_deepkit.default)(options.deepkit),
38
43
  (0, _powerlines_plugin_babel.default)(options.babel),
39
44
  {
40
45
  name: "env:core",
@@ -47,7 +52,12 @@ const plugin = (options = {}) => {
47
52
  inject: false,
48
53
  prefix: []
49
54
  }),
50
- babel: { plugins: [require_babel_plugin.envBabelPlugin] }
55
+ babel: { plugins: [require_babel_plugin.envBabelPlugin] },
56
+ deepkit: {
57
+ reflection: "default",
58
+ level: "all"
59
+ },
60
+ tsc: {}
51
61
  };
52
62
  if ((0, _stryke_type_checks_is_set_string.isSetString)(config.env.types) || config.env.types && (0, _stryke_type_checks_is_set_string.isSetString)(config.env.types.file)) {
53
63
  config.env.types = (0, _stryke_convert_parse_type_definition.parseTypeDefinition)(config.env.types);
@@ -68,19 +78,26 @@ const plugin = (options = {}) => {
68
78
  const file = await this.fs.resolve(secretsDefaultTypeDefinition.file);
69
79
  if (file) config.env.secrets = (0, _stryke_convert_parse_type_definition.parseTypeDefinition)(`${file}#${secretsDefaultTypeDefinition.name}`);
70
80
  }
71
- config.env.prefix = (0, _stryke_convert_to_array.toArray)(config.env.prefix ?? []).reduce((ret, prefix) => {
81
+ if (config.env.types || config.env.secrets) config.tsc.filter = { id: [new RegExp(`^(${powerlines_constants.VIRTUAL_MODULE_PREFIX})?${(0, _stryke_path_join.joinPaths)(this.builtinsPath, "env.ts").replace(/\\/g, "\\\\").replace(/\//g, "\\/").replace(/\./g, "\\.").replace(/\$/g, "\\$")}$`)] };
82
+ config.env.prefix = (0, _stryke_convert_to_array.toArray)(config.env.prefix ?? []).reduce(__assignType((ret, prefix) => {
72
83
  const formattedPrefix = (0, _stryke_string_format_constant_case.constantCase)(prefix);
73
84
  if (!ret.includes(formattedPrefix)) ret.push(formattedPrefix);
74
85
  return ret;
75
86
  }, [
76
- ..._stryke_env_types.ENV_PREFIXES,
77
- "POWERLINES_",
78
- this.config.framework && this.config.framework !== "powerlines" && `${(0, _stryke_string_format_constant_case.constantCase)(this.config.framework)}_`
79
- ].filter(Boolean));
80
- config.env.prefix = (0, _stryke_helpers_get_unique.getUnique)((0, _stryke_convert_to_array.toArray)(config.env.prefix).reduce((ret, prefix) => {
87
+ "ret",
88
+ "prefix",
89
+ "",
90
+ "P&F2!&2\"\"/#"
91
+ ]), ["POWERLINES_", this.config.framework && this.config.framework !== "powerlines" && `${(0, _stryke_string_format_constant_case.constantCase)(this.config.framework)}_`].filter(Boolean));
92
+ config.env.prefix = (0, _stryke_helpers_get_unique.getUnique)((0, _stryke_convert_to_array.toArray)(config.env.prefix).reduce(__assignType((ret, prefix) => {
81
93
  if (!ret.includes(prefix.replace(/_$/g, ""))) ret.push(prefix.replace(/_$/g, ""));
82
94
  return ret;
83
- }, []));
95
+ }, [
96
+ "ret",
97
+ "prefix",
98
+ "",
99
+ "P\"2!\"2\"\"/#"
100
+ ]), []));
84
101
  return config;
85
102
  },
86
103
  async configResolved() {
@@ -109,15 +126,32 @@ const plugin = (options = {}) => {
109
126
  if (!this.env.types.secrets) throw new Error("Failed to find the secrets configuration type reflection in the context.");
110
127
  await require_helpers_persistence.writeEnvTypeReflection(this, this.env.types.secrets, "secrets");
111
128
  this.debug(`Resolved ${this.env.types.env.getProperties().length ?? 0} environment configuration parameters and ${this.env.types.secrets?.getProperties().length ?? 0} secret configuration parameters`);
112
- const envWithAlias = this.env.types.env.getProperties().filter((prop) => prop.getAlias().length > 0);
113
- Object.entries(await require_helpers_load.loadEnv(this, this.config.env)).forEach(([key, value]) => {
114
- const unprefixedKey = this.config.env.prefix.reduce((ret, prefix) => {
129
+ const envWithAlias = this.env.types.env.getProperties().filter(__assignType((prop) => prop.getAlias().length > 0, [
130
+ "prop",
131
+ "",
132
+ "P\"2!\"/\""
133
+ ]));
134
+ Object.entries(await require_helpers_load.loadEnv(this, this.config.env)).forEach(__assignType(([key, value]) => {
135
+ const unprefixedKey = this.config.env.prefix.reduce(__assignType((ret, prefix) => {
115
136
  if (key.replace(/_$/g, "").startsWith(prefix)) return key.replace(/_$/g, "").slice(prefix.length);
116
137
  return ret;
117
- }, key);
118
- const aliasKey = envWithAlias.find((prop) => prop?.getAlias().reverse().includes(unprefixedKey));
138
+ }, [
139
+ "ret",
140
+ "prefix",
141
+ "",
142
+ "P\"2!\"2\"\"/#"
143
+ ]), key);
144
+ const aliasKey = envWithAlias.find(__assignType((prop) => prop?.getAlias().reverse().includes(unprefixedKey), [
145
+ "prop",
146
+ "",
147
+ "P\"2!\"/\""
148
+ ]));
119
149
  if (this.env.types.env?.hasProperty(unprefixedKey) || aliasKey) this.env.types.env.getProperty(unprefixedKey).setDefaultValue(value);
120
- });
150
+ }, [
151
+ "param0",
152
+ "",
153
+ "P\"2!\"/\""
154
+ ]));
121
155
  this.env.used.env = new _powerlines_deepkit_vendor_type.ReflectionClass({
122
156
  kind: _powerlines_deepkit_vendor_type.ReflectionKind.objectLiteral,
123
157
  typeName: "Env",
@@ -137,7 +171,7 @@ const plugin = (options = {}) => {
137
171
  }
138
172
  }
139
173
  },
140
- async prepare() {
174
+ prepare: __assignType(async function prepare() {
141
175
  const _self$ = this;
142
176
  this.debug(`Preparing the Environment runtime artifacts for the Powerlines project.`);
143
177
  const result = await require_helpers_persistence.readEnvTypeReflection(this, "env");
@@ -147,10 +181,10 @@ const plugin = (options = {}) => {
147
181
  },
148
182
  reflection: result
149
183
  }));
150
- },
184
+ }, ["prepare", "P\"/!"]),
151
185
  transform: {
152
186
  order: "post",
153
- async handler() {
187
+ handler: __assignType(async function handler() {
154
188
  if (this.env.used.env.getProperties().length > 0) {
155
189
  this.trace(`Persisting used environment configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "env")}.`);
156
190
  await require_helpers_persistence.writeEnvReflection(this, this.env.used.env, "env");
@@ -159,37 +193,48 @@ const plugin = (options = {}) => {
159
193
  this.trace(`Persisting used secret configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "secrets")}.`);
160
194
  await require_helpers_persistence.writeEnvReflection(this, this.env.used.secrets, "secrets");
161
195
  }
162
- }
196
+ }, ["handler", "P\"/!"])
163
197
  },
164
- async docs() {
198
+ docs: __assignType(async function docs() {
165
199
  this.debug(`Documenting environment variables configuration values in "${(0, _stryke_path_join.joinPaths)(require_helpers_docs_helper.getDocsOutputPath(this), "env.md")}"`);
166
200
  const result = await require_helpers_persistence.readEnvTypeReflection(this, "env");
167
201
  return (0, _powerlines_plugin_alloy_render.render)(this, (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_docs.EnvDocsFile, {
168
202
  levelOffset: 0,
169
203
  reflection: result
170
204
  }));
171
- },
172
- async buildEnd() {
205
+ }, ["docs", "P\"/!"]),
206
+ buildEnd: __assignType(async function buildEnd() {
173
207
  const reflectionPath = require_helpers_persistence.getEnvReflectionsPath(this, "env");
174
208
  this.debug(`Writing env reflection types to ${reflectionPath}.`);
175
209
  await require_helpers_persistence.writeEnvReflection(this, this.env.used.env, "env");
176
- }
210
+ }, ["buildEnd", "P\"/!"])
177
211
  },
178
212
  {
179
213
  name: "env:automd-generator",
180
- config() {
214
+ config: __assignType(function config() {
181
215
  return { automd: (0, defu.default)(options.automd ?? {}, { generators: { env: require_helpers_automd_generator.env(this) } }) };
182
- }
216
+ }, ["config", "P\"/!"])
183
217
  },
184
218
  {
185
219
  name: "env:vite",
186
- vite: { configResolved() {
220
+ vite: { configResolved: __assignType(function configResolved() {
187
221
  return { envPrefix: this.config?.env?.prefix };
188
- } }
222
+ }, [
223
+ () => require_types_plugin.__ΩEnvPluginContext,
224
+ "this",
225
+ "configResolved",
226
+ "Pn!2\"\"/#"
227
+ ]) }
189
228
  },
190
229
  (0, _powerlines_plugin_automd.default)(options.automd)
191
230
  ];
192
- };
231
+ }, [
232
+ () => require_types_plugin.__ΩEnvPluginOptions,
233
+ "options",
234
+ () => ({}),
235
+ "",
236
+ "Pn!2\">#\"/$"
237
+ ]);
193
238
 
194
239
  //#endregion
195
240
  exports.default = plugin;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;YAgEY,MAAA;IACR,GAAA,GAAM,gBAAA;EAAA;AAAA;;;;cAOG,MAAA,oBAA2B,gBAAA,GAAmB,gBAAA,EACzD,OAAA,GAAS,gBAAA,KA2VJ,MAAA,CAAO,QAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;YAiEY,MAAA;IACR,GAAA,GAAM,gBAAA;EAAA;AAAA;;;;cAOG,MAAA,oBAA2B,gBAAA,GAAmB,gBAAA,EACzD,OAAA,GAAS,gBAAA,KAgXJ,MAAA,CAAO,QAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;YAgEY,MAAA;IACR,GAAA,GAAM,gBAAA;EAAA;AAAA;;;;cAOG,MAAA,oBAA2B,gBAAA,GAAmB,gBAAA,EACzD,OAAA,GAAS,gBAAA,KA2VJ,MAAA,CAAO,QAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;YAiEY,MAAA;IACR,GAAA,GAAM,gBAAA;EAAA;AAAA;;;;cAOG,MAAA,oBAA2B,gBAAA,GAAmB,gBAAA,EACzD,OAAA,GAAS,gBAAA,KAgXJ,MAAA,CAAO,QAAA"}
package/dist/index.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import { __ΩEnvPluginContext, __ΩEnvPluginOptions } from "./types/plugin.mjs";
1
2
  import { reflectEnv, reflectSecrets } from "./helpers/reflect.mjs";
2
3
  import { getEnvDefaultTypeDefinition, getEnvReflectionsPath, getEnvTypeReflectionsPath, getSecretsDefaultTypeDefinition, readEnvReflection, readEnvTypeReflection, readSecretsReflection, writeEnvReflection, writeEnvTypeReflection } from "./helpers/persistence.mjs";
3
4
  import { loadEnv } from "./helpers/load.mjs";
@@ -7,15 +8,15 @@ import { EnvDocsFile } from "./components/docs.mjs";
7
8
  import { EnvBuiltin } from "./components/env-builtin.mjs";
8
9
  import { envBabelPlugin } from "./babel/plugin.mjs";
9
10
  import { ReflectionClass, ReflectionKind } from "@powerlines/deepkit/vendor/type";
10
- import { ENV_PREFIXES } from "@stryke/env/types";
11
11
  import defu from "defu";
12
+ import { VIRTUAL_MODULE_PREFIX } from "powerlines/constants";
12
13
  import { joinPaths } from "@stryke/path/join";
13
14
  import { createComponent } from "@alloy-js/core/jsx-runtime";
14
15
  import { getUnique } from "@stryke/helpers/get-unique";
15
- import alloy from "@powerlines/plugin-alloy";
16
16
  import { render } from "@powerlines/plugin-alloy/render";
17
17
  import automd from "@powerlines/plugin-automd";
18
18
  import babel from "@powerlines/plugin-babel";
19
+ import deepkit from "@powerlines/plugin-deepkit";
19
20
  import { parseTypeDefinition } from "@stryke/convert/parse-type-definition";
20
21
  import { toArray } from "@stryke/convert/to-array";
21
22
  import { existsSync } from "@stryke/fs/exists";
@@ -23,12 +24,16 @@ import { constantCase } from "@stryke/string-format/constant-case";
23
24
  import { isSetString } from "@stryke/type-checks/is-set-string";
24
25
 
25
26
  //#region src/index.tsx
27
+ function __assignType(fn, args) {
28
+ fn.__type = args;
29
+ return fn;
30
+ }
26
31
  /**
27
32
  * A Powerlines plugin to inject environment variables into the source code.
28
33
  */
29
- const plugin = (options = {}) => {
34
+ const plugin = __assignType((options = {}) => {
30
35
  return [
31
- alloy(options.alloy),
36
+ deepkit(options.deepkit),
32
37
  babel(options.babel),
33
38
  {
34
39
  name: "env:core",
@@ -41,7 +46,12 @@ const plugin = (options = {}) => {
41
46
  inject: false,
42
47
  prefix: []
43
48
  }),
44
- babel: { plugins: [envBabelPlugin] }
49
+ babel: { plugins: [envBabelPlugin] },
50
+ deepkit: {
51
+ reflection: "default",
52
+ level: "all"
53
+ },
54
+ tsc: {}
45
55
  };
46
56
  if (isSetString(config.env.types) || config.env.types && isSetString(config.env.types.file)) {
47
57
  config.env.types = parseTypeDefinition(config.env.types);
@@ -62,19 +72,26 @@ const plugin = (options = {}) => {
62
72
  const file = await this.fs.resolve(secretsDefaultTypeDefinition.file);
63
73
  if (file) config.env.secrets = parseTypeDefinition(`${file}#${secretsDefaultTypeDefinition.name}`);
64
74
  }
65
- config.env.prefix = toArray(config.env.prefix ?? []).reduce((ret, prefix) => {
75
+ if (config.env.types || config.env.secrets) config.tsc.filter = { id: [new RegExp(`^(${VIRTUAL_MODULE_PREFIX})?${joinPaths(this.builtinsPath, "env.ts").replace(/\\/g, "\\\\").replace(/\//g, "\\/").replace(/\./g, "\\.").replace(/\$/g, "\\$")}$`)] };
76
+ config.env.prefix = toArray(config.env.prefix ?? []).reduce(__assignType((ret, prefix) => {
66
77
  const formattedPrefix = constantCase(prefix);
67
78
  if (!ret.includes(formattedPrefix)) ret.push(formattedPrefix);
68
79
  return ret;
69
80
  }, [
70
- ...ENV_PREFIXES,
71
- "POWERLINES_",
72
- this.config.framework && this.config.framework !== "powerlines" && `${constantCase(this.config.framework)}_`
73
- ].filter(Boolean));
74
- config.env.prefix = getUnique(toArray(config.env.prefix).reduce((ret, prefix) => {
81
+ "ret",
82
+ "prefix",
83
+ "",
84
+ "P&F2!&2\"\"/#"
85
+ ]), ["POWERLINES_", this.config.framework && this.config.framework !== "powerlines" && `${constantCase(this.config.framework)}_`].filter(Boolean));
86
+ config.env.prefix = getUnique(toArray(config.env.prefix).reduce(__assignType((ret, prefix) => {
75
87
  if (!ret.includes(prefix.replace(/_$/g, ""))) ret.push(prefix.replace(/_$/g, ""));
76
88
  return ret;
77
- }, []));
89
+ }, [
90
+ "ret",
91
+ "prefix",
92
+ "",
93
+ "P\"2!\"2\"\"/#"
94
+ ]), []));
78
95
  return config;
79
96
  },
80
97
  async configResolved() {
@@ -103,15 +120,32 @@ const plugin = (options = {}) => {
103
120
  if (!this.env.types.secrets) throw new Error("Failed to find the secrets configuration type reflection in the context.");
104
121
  await writeEnvTypeReflection(this, this.env.types.secrets, "secrets");
105
122
  this.debug(`Resolved ${this.env.types.env.getProperties().length ?? 0} environment configuration parameters and ${this.env.types.secrets?.getProperties().length ?? 0} secret configuration parameters`);
106
- const envWithAlias = this.env.types.env.getProperties().filter((prop) => prop.getAlias().length > 0);
107
- Object.entries(await loadEnv(this, this.config.env)).forEach(([key, value]) => {
108
- const unprefixedKey = this.config.env.prefix.reduce((ret, prefix) => {
123
+ const envWithAlias = this.env.types.env.getProperties().filter(__assignType((prop) => prop.getAlias().length > 0, [
124
+ "prop",
125
+ "",
126
+ "P\"2!\"/\""
127
+ ]));
128
+ Object.entries(await loadEnv(this, this.config.env)).forEach(__assignType(([key, value]) => {
129
+ const unprefixedKey = this.config.env.prefix.reduce(__assignType((ret, prefix) => {
109
130
  if (key.replace(/_$/g, "").startsWith(prefix)) return key.replace(/_$/g, "").slice(prefix.length);
110
131
  return ret;
111
- }, key);
112
- const aliasKey = envWithAlias.find((prop) => prop?.getAlias().reverse().includes(unprefixedKey));
132
+ }, [
133
+ "ret",
134
+ "prefix",
135
+ "",
136
+ "P\"2!\"2\"\"/#"
137
+ ]), key);
138
+ const aliasKey = envWithAlias.find(__assignType((prop) => prop?.getAlias().reverse().includes(unprefixedKey), [
139
+ "prop",
140
+ "",
141
+ "P\"2!\"/\""
142
+ ]));
113
143
  if (this.env.types.env?.hasProperty(unprefixedKey) || aliasKey) this.env.types.env.getProperty(unprefixedKey).setDefaultValue(value);
114
- });
144
+ }, [
145
+ "param0",
146
+ "",
147
+ "P\"2!\"/\""
148
+ ]));
115
149
  this.env.used.env = new ReflectionClass({
116
150
  kind: ReflectionKind.objectLiteral,
117
151
  typeName: "Env",
@@ -131,7 +165,7 @@ const plugin = (options = {}) => {
131
165
  }
132
166
  }
133
167
  },
134
- async prepare() {
168
+ prepare: __assignType(async function prepare() {
135
169
  const _self$ = this;
136
170
  this.debug(`Preparing the Environment runtime artifacts for the Powerlines project.`);
137
171
  const result = await readEnvTypeReflection(this, "env");
@@ -141,10 +175,10 @@ const plugin = (options = {}) => {
141
175
  },
142
176
  reflection: result
143
177
  }));
144
- },
178
+ }, ["prepare", "P\"/!"]),
145
179
  transform: {
146
180
  order: "post",
147
- async handler() {
181
+ handler: __assignType(async function handler() {
148
182
  if (this.env.used.env.getProperties().length > 0) {
149
183
  this.trace(`Persisting used environment configuration reflections to ${getEnvReflectionsPath(this, "env")}.`);
150
184
  await writeEnvReflection(this, this.env.used.env, "env");
@@ -153,37 +187,48 @@ const plugin = (options = {}) => {
153
187
  this.trace(`Persisting used secret configuration reflections to ${getEnvReflectionsPath(this, "secrets")}.`);
154
188
  await writeEnvReflection(this, this.env.used.secrets, "secrets");
155
189
  }
156
- }
190
+ }, ["handler", "P\"/!"])
157
191
  },
158
- async docs() {
192
+ docs: __assignType(async function docs() {
159
193
  this.debug(`Documenting environment variables configuration values in "${joinPaths(getDocsOutputPath(this), "env.md")}"`);
160
194
  const result = await readEnvTypeReflection(this, "env");
161
195
  return render(this, createComponent(EnvDocsFile, {
162
196
  levelOffset: 0,
163
197
  reflection: result
164
198
  }));
165
- },
166
- async buildEnd() {
199
+ }, ["docs", "P\"/!"]),
200
+ buildEnd: __assignType(async function buildEnd() {
167
201
  const reflectionPath = getEnvReflectionsPath(this, "env");
168
202
  this.debug(`Writing env reflection types to ${reflectionPath}.`);
169
203
  await writeEnvReflection(this, this.env.used.env, "env");
170
- }
204
+ }, ["buildEnd", "P\"/!"])
171
205
  },
172
206
  {
173
207
  name: "env:automd-generator",
174
- config() {
208
+ config: __assignType(function config() {
175
209
  return { automd: defu(options.automd ?? {}, { generators: { env: env(this) } }) };
176
- }
210
+ }, ["config", "P\"/!"])
177
211
  },
178
212
  {
179
213
  name: "env:vite",
180
- vite: { configResolved() {
214
+ vite: { configResolved: __assignType(function configResolved() {
181
215
  return { envPrefix: this.config?.env?.prefix };
182
- } }
216
+ }, [
217
+ () => __ΩEnvPluginContext,
218
+ "this",
219
+ "configResolved",
220
+ "Pn!2\"\"/#"
221
+ ]) }
183
222
  },
184
223
  automd(options.automd)
185
224
  ];
186
- };
225
+ }, [
226
+ () => __ΩEnvPluginOptions,
227
+ "options",
228
+ () => ({}),
229
+ "",
230
+ "Pn!2\">#\"/$"
231
+ ]);
187
232
 
188
233
  //#endregion
189
234
  export { plugin as default, plugin };