@powerlines/plugin-nodejs 0.1.18 → 0.1.19

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,14 +1,23 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
2
  import { Children } from "@alloy-js/core";
3
3
  import "@alloy-js/typescript";
4
+ import "@powerlines/deepkit/vendor/type";
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;
@@ -1,14 +1,23 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
2
  import { Children } from "@alloy-js/core";
3
3
  import "@alloy-js/typescript";
4
+ import "@powerlines/deepkit/vendor/type";
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-nodejs",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for building a Node.js application.",
6
6
  "repository": {
@@ -133,9 +133,9 @@
133
133
  "dependencies": {
134
134
  "@alloy-js/core": "^0.22.0",
135
135
  "@alloy-js/typescript": "^0.22.0",
136
- "@powerlines/plugin-alloy": "^0.18.20",
136
+ "@powerlines/plugin-alloy": "^0.18.21",
137
137
  "@powerlines/plugin-babel": "^0.12.147",
138
- "@powerlines/plugin-env": "^0.15.23",
138
+ "@powerlines/plugin-env": "^0.15.24",
139
139
  "@storm-software/config-tools": "^1.188.75",
140
140
  "@stryke/string-format": "^0.12.30",
141
141
  "defu": "^6.1.4",
@@ -147,5 +147,5 @@
147
147
  "@types/node": "^24.10.4"
148
148
  },
149
149
  "publishConfig": { "access": "public" },
150
- "gitHead": "9077ad1e2aa672c7d16ca2c92702426283f7c384"
150
+ "gitHead": "818edcf68d107e24b0b00b8b1a549efa7b2ac7d7"
151
151
  }