@powerlines/plugin-env 0.15.22 → 0.15.24

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,4 +1,5 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
+ import { ReflectionKind } from "@powerlines/deepkit/vendor/type";
2
3
  import { Children } from "@alloy-js/core";
3
4
  import "@alloy-js/typescript";
4
5
 
@@ -6,9 +7,17 @@ import "@alloy-js/typescript";
6
7
 
7
8
  interface TSDocModuleProps extends ComponentProps {
8
9
  /**
9
- * the prefix for the builtin module name
10
+ * The prefix for the builtin module name
10
11
  *
11
- * @defaultValue "storm"
12
+ * @remarks
13
+ * This value is populated from the Powerlines configuration output builtin prefix by default.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * /**
18
+ * @module powerlines:my-module
19
+ * \/
20
+ * ```
12
21
  */
13
22
  prefix?: string;
14
23
  /**
@@ -19,7 +28,7 @@ interface TSDocModuleProps extends ComponentProps {
19
28
  *
20
29
  * @example
21
30
  * ```ts
22
- * import { MyModule } from "storm:my-module";
31
+ * import { MyModule } from "powerlines:my-module";
23
32
  * ```
24
33
  */
25
34
  name: Children;
@@ -1,14 +1,23 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
2
  import { Children } from "@alloy-js/core";
3
+ import "@powerlines/deepkit/vendor/type";
3
4
  import "@alloy-js/typescript";
4
5
 
5
6
  //#region ../plugin-alloy/src/typescript/components/tsdoc.d.ts
6
7
 
7
8
  interface TSDocModuleProps extends ComponentProps {
8
9
  /**
9
- * the prefix for the builtin module name
10
+ * The prefix for the builtin module name
10
11
  *
11
- * @defaultValue "storm"
12
+ * @remarks
13
+ * This value is populated from the Powerlines configuration output builtin prefix by default.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * /**
18
+ * @module powerlines:my-module
19
+ * \/
20
+ * ```
12
21
  */
13
22
  prefix?: string;
14
23
  /**
@@ -19,7 +28,7 @@ interface TSDocModuleProps extends ComponentProps {
19
28
  *
20
29
  * @example
21
30
  * ```ts
22
- * import { MyModule } from "storm:my-module";
31
+ * import { MyModule } from "powerlines:my-module";
23
32
  * ```
24
33
  */
25
34
  name: Children;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-env",
3
- "version": "0.15.22",
3
+ "version": "0.15.24",
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.5",
195
195
  "@babel/types": "^7.28.5",
196
- "@powerlines/plugin-alloy": "^0.18.19",
197
- "@powerlines/plugin-automd": "^0.1.137",
198
- "@powerlines/plugin-babel": "^0.12.146",
199
- "@powerlines/plugin-plugin": "^0.12.89",
196
+ "@powerlines/plugin-alloy": "^0.18.21",
197
+ "@powerlines/plugin-automd": "^0.1.138",
198
+ "@powerlines/plugin-babel": "^0.12.147",
199
+ "@powerlines/plugin-plugin": "^0.12.90",
200
200
  "@storm-software/config-tools": "^1.188.75",
201
201
  "@stryke/capnp": "^0.12.52",
202
202
  "@stryke/env": "^0.20.44",
@@ -206,14 +206,14 @@
206
206
  "@stryke/type-checks": "^0.5.15",
207
207
  "@stryke/types": "^0.10.29",
208
208
  "automd": "^0.4.2",
209
- "powerlines": "^0.37.11"
209
+ "powerlines": "^0.37.12"
210
210
  },
211
211
  "devDependencies": {
212
- "@powerlines/deepkit": "^0.5.52",
213
- "@powerlines/plugin-deepkit": "^0.11.13",
212
+ "@powerlines/deepkit": "^0.5.54",
213
+ "@powerlines/plugin-deepkit": "^0.11.15",
214
214
  "@types/node": "^24.10.4",
215
215
  "vite": "8.0.0-beta.2"
216
216
  },
217
217
  "publishConfig": { "access": "public" },
218
- "gitHead": "f3772c353f185b0d76e51bceea500ec8dcd9f041"
218
+ "gitHead": "818edcf68d107e24b0b00b8b1a549efa7b2ac7d7"
219
219
  }