@powerlines/plugin-env 0.15.105 → 0.15.107
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/components/env.cjs
CHANGED
|
@@ -26,7 +26,6 @@ function EnvTypeDefinition(props) {
|
|
|
26
26
|
return [
|
|
27
27
|
(0, __alloy_js_core_jsx_runtime.createComponent)(__powerlines_plugin_alloy_typescript_components_typescript_interface.TypeScriptInterface, {
|
|
28
28
|
name: " EnvBase",
|
|
29
|
-
"extends": ["EnvInterface"],
|
|
30
29
|
defaultValue,
|
|
31
30
|
reflection,
|
|
32
31
|
"export": true
|
|
@@ -219,21 +218,18 @@ function EnvBuiltin(props) {
|
|
|
219
218
|
description: "The environment configuration module provides an interface to define environment configuration parameters."
|
|
220
219
|
}, rest, {
|
|
221
220
|
get imports() {
|
|
222
|
-
return require_defu.defu({
|
|
223
|
-
"
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
],
|
|
235
|
-
"@powerlines/plugin-env/types/runtime": ["EnvInterface"]
|
|
236
|
-
}, rest.imports ?? {});
|
|
221
|
+
return require_defu.defu({ "@powerlines/deepkit/vendor/type": [
|
|
222
|
+
"Type",
|
|
223
|
+
"stringify",
|
|
224
|
+
"serializer",
|
|
225
|
+
"serializeFunction",
|
|
226
|
+
"deserializeFunction",
|
|
227
|
+
"ReflectionKind",
|
|
228
|
+
"TemplateState",
|
|
229
|
+
"Serializer",
|
|
230
|
+
"TypeProperty",
|
|
231
|
+
"TypePropertySignature"
|
|
232
|
+
] }, rest.imports ?? {});
|
|
237
233
|
},
|
|
238
234
|
get children() {
|
|
239
235
|
return [
|
package/dist/components/env.mjs
CHANGED
|
@@ -25,7 +25,6 @@ function EnvTypeDefinition(props) {
|
|
|
25
25
|
return [
|
|
26
26
|
createComponent(TypeScriptInterface, {
|
|
27
27
|
name: " EnvBase",
|
|
28
|
-
"extends": ["EnvInterface"],
|
|
29
28
|
defaultValue,
|
|
30
29
|
reflection,
|
|
31
30
|
"export": true
|
|
@@ -218,21 +217,18 @@ function EnvBuiltin(props) {
|
|
|
218
217
|
description: "The environment configuration module provides an interface to define environment configuration parameters."
|
|
219
218
|
}, rest, {
|
|
220
219
|
get imports() {
|
|
221
|
-
return defu({
|
|
222
|
-
"
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
],
|
|
234
|
-
"@powerlines/plugin-env/types/runtime": ["EnvInterface"]
|
|
235
|
-
}, rest.imports ?? {});
|
|
220
|
+
return defu({ "@powerlines/deepkit/vendor/type": [
|
|
221
|
+
"Type",
|
|
222
|
+
"stringify",
|
|
223
|
+
"serializer",
|
|
224
|
+
"serializeFunction",
|
|
225
|
+
"deserializeFunction",
|
|
226
|
+
"ReflectionKind",
|
|
227
|
+
"TemplateState",
|
|
228
|
+
"Serializer",
|
|
229
|
+
"TypeProperty",
|
|
230
|
+
"TypePropertySignature"
|
|
231
|
+
] }, rest.imports ?? {});
|
|
236
232
|
},
|
|
237
233
|
get children() {
|
|
238
234
|
return [
|
|
@@ -13,7 +13,6 @@ import { Jiti } from "jiti";
|
|
|
13
13
|
import { SourceMap } from "magic-string";
|
|
14
14
|
import { ParseResult, ParserOptions } from "oxc-parser";
|
|
15
15
|
import { Range } from "semver";
|
|
16
|
-
import { Project } from "ts-morph";
|
|
17
16
|
import { RequestInfo, Response } from "undici";
|
|
18
17
|
|
|
19
18
|
//#region ../powerlines/src/types/context.d.ts
|
|
@@ -233,15 +232,6 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
233
232
|
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
234
233
|
*/
|
|
235
234
|
alias: Record<string, string>;
|
|
236
|
-
/**
|
|
237
|
-
* The {@link Project} instance used for type reflection and module manipulation
|
|
238
|
-
*
|
|
239
|
-
* @see https://ts-morph.com/
|
|
240
|
-
*
|
|
241
|
-
* @remarks
|
|
242
|
-
* This instance is created lazily on first access.
|
|
243
|
-
*/
|
|
244
|
-
program: Project;
|
|
245
235
|
/**
|
|
246
236
|
* A function to perform HTTP fetch requests
|
|
247
237
|
*
|
|
@@ -13,7 +13,6 @@ import { Jiti } from "jiti";
|
|
|
13
13
|
import { SourceMap } from "magic-string";
|
|
14
14
|
import { ParseResult, ParserOptions } from "oxc-parser";
|
|
15
15
|
import { Range } from "semver";
|
|
16
|
-
import { Project } from "ts-morph";
|
|
17
16
|
import { RequestInfo, Response } from "undici";
|
|
18
17
|
|
|
19
18
|
//#region ../powerlines/src/types/context.d.ts
|
|
@@ -233,15 +232,6 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
233
232
|
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
234
233
|
*/
|
|
235
234
|
alias: Record<string, string>;
|
|
236
|
-
/**
|
|
237
|
-
* The {@link Project} instance used for type reflection and module manipulation
|
|
238
|
-
*
|
|
239
|
-
* @see https://ts-morph.com/
|
|
240
|
-
*
|
|
241
|
-
* @remarks
|
|
242
|
-
* This instance is created lazily on first access.
|
|
243
|
-
*/
|
|
244
|
-
program: Project;
|
|
245
235
|
/**
|
|
246
236
|
* A function to perform HTTP fetch requests
|
|
247
237
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-env",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.107",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
|
|
6
6
|
"repository": {
|
|
@@ -193,10 +193,10 @@
|
|
|
193
193
|
"@alloy-js/typescript": "^0.22.0",
|
|
194
194
|
"@babel/core": "^7.28.6",
|
|
195
195
|
"@babel/types": "^7.28.6",
|
|
196
|
-
"@powerlines/plugin-alloy": "^0.18.
|
|
197
|
-
"@powerlines/plugin-automd": "^0.1.
|
|
198
|
-
"@powerlines/plugin-babel": "^0.12.
|
|
199
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
196
|
+
"@powerlines/plugin-alloy": "^0.18.100",
|
|
197
|
+
"@powerlines/plugin-automd": "^0.1.210",
|
|
198
|
+
"@powerlines/plugin-babel": "^0.12.219",
|
|
199
|
+
"@powerlines/plugin-plugin": "^0.12.161",
|
|
200
200
|
"@storm-software/config-tools": "^1.189.0",
|
|
201
201
|
"@stryke/capnp": "^0.12.61",
|
|
202
202
|
"@stryke/env": "^0.20.53",
|
|
@@ -206,14 +206,14 @@
|
|
|
206
206
|
"@stryke/type-checks": "^0.5.20",
|
|
207
207
|
"@stryke/types": "^0.10.34",
|
|
208
208
|
"automd": "^0.4.2",
|
|
209
|
-
"powerlines": "^0.37.
|
|
209
|
+
"powerlines": "^0.37.83"
|
|
210
210
|
},
|
|
211
211
|
"devDependencies": {
|
|
212
|
-
"@powerlines/deepkit": "^0.5.
|
|
213
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
212
|
+
"@powerlines/deepkit": "^0.5.127",
|
|
213
|
+
"@powerlines/plugin-deepkit": "^0.11.89",
|
|
214
214
|
"@types/node": "^24.10.9",
|
|
215
215
|
"vite": "8.0.0-beta.2"
|
|
216
216
|
},
|
|
217
217
|
"publishConfig": { "access": "public" },
|
|
218
|
-
"gitHead": "
|
|
218
|
+
"gitHead": "ac70da24fe65b662e50955545df37beeb8b349d3"
|
|
219
219
|
}
|