@powerlines/plugin-env 0.15.90 → 0.15.91
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.
|
@@ -102,15 +102,6 @@ interface OutputConfig {
|
|
|
102
102
|
* @defaultValue "\{projectRoot\}/powerlines.d.ts"
|
|
103
103
|
*/
|
|
104
104
|
dts?: string | false;
|
|
105
|
-
/**
|
|
106
|
-
* A prefix to use for identifying builtin modules
|
|
107
|
-
*
|
|
108
|
-
* @remarks
|
|
109
|
-
* This prefix will be used to identify all builtin modules generated during the "prepare" phase. An example builtin ID for a module called `"utils"` would be `"{builtinPrefix}:utils"`.
|
|
110
|
-
*
|
|
111
|
-
* @defaultValue "powerlines"
|
|
112
|
-
*/
|
|
113
|
-
builtinPrefix?: string;
|
|
114
105
|
/**
|
|
115
106
|
* The module format of the output files
|
|
116
107
|
*
|
|
@@ -346,7 +337,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
346
337
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
347
338
|
*
|
|
348
339
|
* @remarks
|
|
349
|
-
* If no values are provided for {@link OutputConfig.dts | output.dts}
|
|
340
|
+
* If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsPath | output.artifactsFolder}, this value will be used as the default.
|
|
350
341
|
*
|
|
351
342
|
* @defaultValue "powerlines"
|
|
352
343
|
*/
|
|
@@ -226,6 +226,13 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
226
226
|
* The builtin module id that exist in the Powerlines virtual file system
|
|
227
227
|
*/
|
|
228
228
|
builtins: string[];
|
|
229
|
+
/**
|
|
230
|
+
* The alias mappings for the project used during module resolution
|
|
231
|
+
*
|
|
232
|
+
* @remarks
|
|
233
|
+
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
234
|
+
*/
|
|
235
|
+
alias: Record<string, string>;
|
|
229
236
|
/**
|
|
230
237
|
* The {@link Project} instance used for type reflection and module manipulation
|
|
231
238
|
*
|
|
@@ -102,15 +102,6 @@ interface OutputConfig {
|
|
|
102
102
|
* @defaultValue "\{projectRoot\}/powerlines.d.ts"
|
|
103
103
|
*/
|
|
104
104
|
dts?: string | false;
|
|
105
|
-
/**
|
|
106
|
-
* A prefix to use for identifying builtin modules
|
|
107
|
-
*
|
|
108
|
-
* @remarks
|
|
109
|
-
* This prefix will be used to identify all builtin modules generated during the "prepare" phase. An example builtin ID for a module called `"utils"` would be `"{builtinPrefix}:utils"`.
|
|
110
|
-
*
|
|
111
|
-
* @defaultValue "powerlines"
|
|
112
|
-
*/
|
|
113
|
-
builtinPrefix?: string;
|
|
114
105
|
/**
|
|
115
106
|
* The module format of the output files
|
|
116
107
|
*
|
|
@@ -346,7 +337,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
346
337
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
347
338
|
*
|
|
348
339
|
* @remarks
|
|
349
|
-
* If no values are provided for {@link OutputConfig.dts | output.dts}
|
|
340
|
+
* If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsPath | output.artifactsFolder}, this value will be used as the default.
|
|
350
341
|
*
|
|
351
342
|
* @defaultValue "powerlines"
|
|
352
343
|
*/
|
|
@@ -226,6 +226,13 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
226
226
|
* The builtin module id that exist in the Powerlines virtual file system
|
|
227
227
|
*/
|
|
228
228
|
builtins: string[];
|
|
229
|
+
/**
|
|
230
|
+
* The alias mappings for the project used during module resolution
|
|
231
|
+
*
|
|
232
|
+
* @remarks
|
|
233
|
+
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
234
|
+
*/
|
|
235
|
+
alias: Record<string, string>;
|
|
229
236
|
/**
|
|
230
237
|
* The {@link Project} instance used for type reflection and module manipulation
|
|
231
238
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-env",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.91",
|
|
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.87",
|
|
197
|
+
"@powerlines/plugin-automd": "^0.1.198",
|
|
198
|
+
"@powerlines/plugin-babel": "^0.12.207",
|
|
199
|
+
"@powerlines/plugin-plugin": "^0.12.150",
|
|
200
200
|
"@storm-software/config-tools": "^1.188.80",
|
|
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.72"
|
|
210
210
|
},
|
|
211
211
|
"devDependencies": {
|
|
212
|
-
"@powerlines/deepkit": "^0.5.
|
|
213
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
212
|
+
"@powerlines/deepkit": "^0.5.115",
|
|
213
|
+
"@powerlines/plugin-deepkit": "^0.11.76",
|
|
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": "458556ca7def9536d1c1fbd770e005a004d0a513"
|
|
219
219
|
}
|