@powerlines/plugin-nodejs 0.1.264 → 0.1.266

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.
@@ -10,6 +10,7 @@ let _stryke_string_format_kebab_case = require("@stryke/string-format/kebab-case
10
10
  let _stryke_string_format_title_case = require("@stryke/string-format/title-case");
11
11
  let defu = require("defu");
12
12
  defu = require_runtime.__toESM(defu);
13
+ let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
13
14
 
14
15
  //#region src/components/env-builtin.tsx
15
16
  /**
@@ -18,44 +19,80 @@ defu = require_runtime.__toESM(defu);
18
19
  function NodeJsEnvBuiltin(props) {
19
20
  const [{ children }, rest] = (0, _alloy_js_core.splitProps)(props, ["children"]);
20
21
  const context = (0, _powerlines_plugin_alloy_core_contexts_context.usePowerlines)();
21
- return <_powerlines_plugin_env_components_env_builtin.EnvBuiltin defaultConfig={_alloy_js_core.code`process.env`} {...rest} imports={(0, defu.default)({
22
- "node:os": "os",
23
- "node:path": ["basename", "join"]
24
- }, rest.imports ?? {})}>
25
- <_alloy_js_typescript.VarDeclaration export const name="isWindows" doc="An indicator specifying whether the current operating system is MacOS (darwin kernel)." initializer={_alloy_js_core.code`/^win/i.test(process.platform); `} />
26
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
27
- <_alloy_js_typescript.VarDeclaration export const name="isLinux" doc="An indicator specifying whether the current operating system is Linux." initializer={_alloy_js_core.code`/^linux/i.test(process.platform); `} />
28
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
29
- <_alloy_js_typescript.VarDeclaration export const name="isMacOS" doc="An indicator specifying whether the current operating system is MacOS (darwin kernel)." initializer={_alloy_js_core.code`/^darwin/i.test(process.platform); `} />
30
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
31
- <_alloy_js_typescript.VarDeclaration const name="homedir" initializer={_alloy_js_core.code`os.homedir(); `} />
32
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
33
- <_alloy_js_typescript.VarDeclaration const name="tmpdir" initializer={_alloy_js_core.code`os.tmpdir(); `} />
34
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
35
- <_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc heading="The environment path types for storing things like data, config, logs, and cache in the current runtime environment.">
36
- <_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks>
37
- {`These environment path types are accessed in the {@link EnvPaths} type. `}
38
- </_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks>
39
- </_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc>
40
- <_alloy_js_typescript.TypeDeclaration export name="EnvPathType">
41
- {_alloy_js_core.code`"data" | "config" | "cache" | "log" | "temp"; `}
42
- </_alloy_js_typescript.TypeDeclaration>
43
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
44
- <_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc heading="The environment paths for storing things like data, config, logs, and cache in the current runtime environment." />
45
- <_alloy_js_typescript.TypeDeclaration export name="EnvPaths">
46
- {_alloy_js_core.code`Record<EnvPathType, string>; `}
47
- </_alloy_js_typescript.TypeDeclaration>
48
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
49
- <_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc heading="The resolved application directories based on the current operating system and environment variables.">
50
- <_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks>
51
- {_alloy_js_core.code`If the \`DATA_DIR\`, \`CONFIG_DIR\`, \`CACHE_DIR\`, \`LOG_DIR\`, or \`TEMP_DIR\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):
22
+ return /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_env_components_env_builtin.EnvBuiltin, {
23
+ defaultConfig: _alloy_js_core.code`process.env`,
24
+ ...rest,
25
+ imports: (0, defu.default)({
26
+ "node:os": "os",
27
+ "node:path": ["basename", "join"]
28
+ }, rest.imports ?? {}),
29
+ children: [
30
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
31
+ export: true,
32
+ const: true,
33
+ name: "isWindows",
34
+ doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
35
+ initializer: _alloy_js_core.code`/^win/i.test(process.platform); `
36
+ }),
37
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
38
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
39
+ export: true,
40
+ const: true,
41
+ name: "isLinux",
42
+ doc: "An indicator specifying whether the current operating system is Linux.",
43
+ initializer: _alloy_js_core.code`/^linux/i.test(process.platform); `
44
+ }),
45
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
46
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
47
+ export: true,
48
+ const: true,
49
+ name: "isMacOS",
50
+ doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
51
+ initializer: _alloy_js_core.code`/^darwin/i.test(process.platform); `
52
+ }),
53
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
54
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
55
+ const: true,
56
+ name: "homedir",
57
+ initializer: _alloy_js_core.code`os.homedir(); `
58
+ }),
59
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
60
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
61
+ const: true,
62
+ name: "tmpdir",
63
+ initializer: _alloy_js_core.code`os.tmpdir(); `
64
+ }),
65
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
66
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
67
+ heading: "The environment path types for storing things like data, config, logs, and cache in the current runtime environment.",
68
+ children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `These environment path types are accessed in the {@link EnvPaths} type. ` })
69
+ }),
70
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.TypeDeclaration, {
71
+ export: true,
72
+ name: "EnvPathType",
73
+ children: _alloy_js_core.code`"data" | "config" | "cache" | "log" | "temp"; `
74
+ }),
75
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
76
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, { heading: "The environment paths for storing things like data, config, logs, and cache in the current runtime environment." }),
77
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.TypeDeclaration, {
78
+ export: true,
79
+ name: "EnvPaths",
80
+ children: _alloy_js_core.code`Record<EnvPathType, string>; `
81
+ }),
82
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
83
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
84
+ heading: "The resolved application directories based on the current operating system and environment variables.",
85
+ children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: _alloy_js_core.code`If the \`DATA_DIR\`, \`CONFIG_DIR\`, \`CACHE_DIR\`, \`LOG_DIR\`, or \`TEMP_DIR\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):
52
86
  - **Linux**: directories are generally created in \`~/.config/<name>\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))
53
87
  - **Windows**: directories are generally created in \`%AppData%/<name>\`
54
88
  - **MacOS**: directories are generally created in \`~/Library/Application Support/<name>\`
55
- `}
56
- </_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks>
57
- </_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc>
58
- <_alloy_js_typescript.VarDeclaration export const name="paths" initializer={_alloy_js_core.code`isMacOS
89
+ ` })
90
+ }),
91
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
92
+ export: true,
93
+ const: true,
94
+ name: "paths",
95
+ initializer: _alloy_js_core.code`isMacOS
59
96
  ? {
60
97
  data: env.DATA_DIR
61
98
  ? join(String(env.DATA_DIR), "${(0, _stryke_string_format_title_case.titleCase)(context.config.name)}")
@@ -118,10 +155,15 @@ function NodeJsEnvBuiltin(props) {
118
155
  : (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR
119
156
  ? join((env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR)!, "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.organization)}", "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.name)}")
120
157
  : join(tmpdir, basename(homedir), "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.organization)}", "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.name)}"))
121
- } as EnvPaths; `} />
122
- <_powerlines_plugin_alloy_core_components_spacing.Spacing />
123
- <_alloy_js_core.Show when={Boolean(children)}>{children}</_alloy_js_core.Show>
124
- </_powerlines_plugin_env_components_env_builtin.EnvBuiltin>;
158
+ } as EnvPaths; `
159
+ }),
160
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
161
+ /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.Show, {
162
+ when: Boolean(children),
163
+ children
164
+ })
165
+ ]
166
+ });
125
167
  }
126
168
 
127
169
  //#endregion
@@ -7,6 +7,7 @@ import { EnvBuiltin } from "@powerlines/plugin-env/components/env-builtin";
7
7
  import { kebabCase } from "@stryke/string-format/kebab-case";
8
8
  import { titleCase } from "@stryke/string-format/title-case";
9
9
  import defu from "defu";
10
+ import { jsx, jsxs } from "@alloy-js/core/jsx-runtime";
10
11
 
11
12
  //#region src/components/env-builtin.tsx
12
13
  /**
@@ -15,44 +16,80 @@ import defu from "defu";
15
16
  function NodeJsEnvBuiltin(props) {
16
17
  const [{ children }, rest] = splitProps(props, ["children"]);
17
18
  const context = usePowerlines();
18
- return <EnvBuiltin defaultConfig={code`process.env`} {...rest} imports={defu({
19
- "node:os": "os",
20
- "node:path": ["basename", "join"]
21
- }, rest.imports ?? {})}>
22
- <VarDeclaration export const name="isWindows" doc="An indicator specifying whether the current operating system is MacOS (darwin kernel)." initializer={code`/^win/i.test(process.platform); `} />
23
- <Spacing />
24
- <VarDeclaration export const name="isLinux" doc="An indicator specifying whether the current operating system is Linux." initializer={code`/^linux/i.test(process.platform); `} />
25
- <Spacing />
26
- <VarDeclaration export const name="isMacOS" doc="An indicator specifying whether the current operating system is MacOS (darwin kernel)." initializer={code`/^darwin/i.test(process.platform); `} />
27
- <Spacing />
28
- <VarDeclaration const name="homedir" initializer={code`os.homedir(); `} />
29
- <Spacing />
30
- <VarDeclaration const name="tmpdir" initializer={code`os.tmpdir(); `} />
31
- <Spacing />
32
- <TSDoc heading="The environment path types for storing things like data, config, logs, and cache in the current runtime environment.">
33
- <TSDocRemarks>
34
- {`These environment path types are accessed in the {@link EnvPaths} type. `}
35
- </TSDocRemarks>
36
- </TSDoc>
37
- <TypeDeclaration export name="EnvPathType">
38
- {code`"data" | "config" | "cache" | "log" | "temp"; `}
39
- </TypeDeclaration>
40
- <Spacing />
41
- <TSDoc heading="The environment paths for storing things like data, config, logs, and cache in the current runtime environment." />
42
- <TypeDeclaration export name="EnvPaths">
43
- {code`Record<EnvPathType, string>; `}
44
- </TypeDeclaration>
45
- <Spacing />
46
- <TSDoc heading="The resolved application directories based on the current operating system and environment variables.">
47
- <TSDocRemarks>
48
- {code`If the \`DATA_DIR\`, \`CONFIG_DIR\`, \`CACHE_DIR\`, \`LOG_DIR\`, or \`TEMP_DIR\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):
19
+ return /* @__PURE__ */ jsxs(EnvBuiltin, {
20
+ defaultConfig: code`process.env`,
21
+ ...rest,
22
+ imports: defu({
23
+ "node:os": "os",
24
+ "node:path": ["basename", "join"]
25
+ }, rest.imports ?? {}),
26
+ children: [
27
+ /* @__PURE__ */ jsx(VarDeclaration, {
28
+ export: true,
29
+ const: true,
30
+ name: "isWindows",
31
+ doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
32
+ initializer: code`/^win/i.test(process.platform); `
33
+ }),
34
+ /* @__PURE__ */ jsx(Spacing, {}),
35
+ /* @__PURE__ */ jsx(VarDeclaration, {
36
+ export: true,
37
+ const: true,
38
+ name: "isLinux",
39
+ doc: "An indicator specifying whether the current operating system is Linux.",
40
+ initializer: code`/^linux/i.test(process.platform); `
41
+ }),
42
+ /* @__PURE__ */ jsx(Spacing, {}),
43
+ /* @__PURE__ */ jsx(VarDeclaration, {
44
+ export: true,
45
+ const: true,
46
+ name: "isMacOS",
47
+ doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
48
+ initializer: code`/^darwin/i.test(process.platform); `
49
+ }),
50
+ /* @__PURE__ */ jsx(Spacing, {}),
51
+ /* @__PURE__ */ jsx(VarDeclaration, {
52
+ const: true,
53
+ name: "homedir",
54
+ initializer: code`os.homedir(); `
55
+ }),
56
+ /* @__PURE__ */ jsx(Spacing, {}),
57
+ /* @__PURE__ */ jsx(VarDeclaration, {
58
+ const: true,
59
+ name: "tmpdir",
60
+ initializer: code`os.tmpdir(); `
61
+ }),
62
+ /* @__PURE__ */ jsx(Spacing, {}),
63
+ /* @__PURE__ */ jsx(TSDoc, {
64
+ heading: "The environment path types for storing things like data, config, logs, and cache in the current runtime environment.",
65
+ children: /* @__PURE__ */ jsx(TSDocRemarks, { children: `These environment path types are accessed in the {@link EnvPaths} type. ` })
66
+ }),
67
+ /* @__PURE__ */ jsx(TypeDeclaration, {
68
+ export: true,
69
+ name: "EnvPathType",
70
+ children: code`"data" | "config" | "cache" | "log" | "temp"; `
71
+ }),
72
+ /* @__PURE__ */ jsx(Spacing, {}),
73
+ /* @__PURE__ */ jsx(TSDoc, { heading: "The environment paths for storing things like data, config, logs, and cache in the current runtime environment." }),
74
+ /* @__PURE__ */ jsx(TypeDeclaration, {
75
+ export: true,
76
+ name: "EnvPaths",
77
+ children: code`Record<EnvPathType, string>; `
78
+ }),
79
+ /* @__PURE__ */ jsx(Spacing, {}),
80
+ /* @__PURE__ */ jsx(TSDoc, {
81
+ heading: "The resolved application directories based on the current operating system and environment variables.",
82
+ children: /* @__PURE__ */ jsx(TSDocRemarks, { children: code`If the \`DATA_DIR\`, \`CONFIG_DIR\`, \`CACHE_DIR\`, \`LOG_DIR\`, or \`TEMP_DIR\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):
49
83
  - **Linux**: directories are generally created in \`~/.config/<name>\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))
50
84
  - **Windows**: directories are generally created in \`%AppData%/<name>\`
51
85
  - **MacOS**: directories are generally created in \`~/Library/Application Support/<name>\`
52
- `}
53
- </TSDocRemarks>
54
- </TSDoc>
55
- <VarDeclaration export const name="paths" initializer={code`isMacOS
86
+ ` })
87
+ }),
88
+ /* @__PURE__ */ jsx(VarDeclaration, {
89
+ export: true,
90
+ const: true,
91
+ name: "paths",
92
+ initializer: code`isMacOS
56
93
  ? {
57
94
  data: env.DATA_DIR
58
95
  ? join(String(env.DATA_DIR), "${titleCase(context.config.name)}")
@@ -115,10 +152,15 @@ function NodeJsEnvBuiltin(props) {
115
152
  : (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR
116
153
  ? join((env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR)!, "${kebabCase(context.config.organization)}", "${kebabCase(context.config.name)}")
117
154
  : join(tmpdir, basename(homedir), "${kebabCase(context.config.organization)}", "${kebabCase(context.config.name)}"))
118
- } as EnvPaths; `} />
119
- <Spacing />
120
- <Show when={Boolean(children)}>{children}</Show>
121
- </EnvBuiltin>;
155
+ } as EnvPaths; `
156
+ }),
157
+ /* @__PURE__ */ jsx(Spacing, {}),
158
+ /* @__PURE__ */ jsx(Show, {
159
+ when: Boolean(children),
160
+ children
161
+ })
162
+ ]
163
+ });
122
164
  }
123
165
 
124
166
  //#endregion
@@ -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 { code, Show, splitProps } from \"@alloy-js/core\";\nimport { TypeDeclaration, VarDeclaration } from \"@alloy-js/typescript\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport {\n TSDoc,\n TSDocRemarks\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport {\n EnvBuiltin,\n EnvBuiltinProps\n} from \"@powerlines/plugin-env/components/env-builtin\";\nimport { kebabCase } from \"@stryke/string-format/kebab-case\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { NodeJsPluginContext } from \"../types\";\n\n/**\n * Generates the NodeJs environment configuration module for the Powerlines project.\n */\nexport function NodeJsEnvBuiltin(props: EnvBuiltinProps) {\n const [{ children }, rest] = splitProps(props, [\"children\"]);\n\n const context = usePowerlines<NodeJsPluginContext>();\n\n return (\n <EnvBuiltin\n defaultConfig={code`process.env`}\n {...rest}\n imports={defu(\n {\n \"node:os\": \"os\",\n \"node:path\": [\"basename\", \"join\"]\n },\n rest.imports ?? {}\n )}>\n <VarDeclaration\n export\n const\n name=\"isWindows\"\n doc=\"An indicator specifying whether the current operating system is MacOS (darwin kernel).\"\n initializer={code`/^win/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration\n export\n const\n name=\"isLinux\"\n doc=\"An indicator specifying whether the current operating system is Linux.\"\n initializer={code`/^linux/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration\n export\n const\n name=\"isMacOS\"\n doc=\"An indicator specifying whether the current operating system is MacOS (darwin kernel).\"\n initializer={code`/^darwin/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration const name=\"homedir\" initializer={code`os.homedir(); `} />\n <Spacing />\n <VarDeclaration const name=\"tmpdir\" initializer={code`os.tmpdir(); `} />\n <Spacing />\n <TSDoc heading=\"The environment path types for storing things like data, config, logs, and cache in the current runtime environment.\">\n <TSDocRemarks>\n {`These environment path types are accessed in the {@link EnvPaths} type. `}\n </TSDocRemarks>\n </TSDoc>\n <TypeDeclaration export name=\"EnvPathType\">\n {code`\"data\" | \"config\" | \"cache\" | \"log\" | \"temp\"; `}\n </TypeDeclaration>\n <Spacing />\n <TSDoc heading=\"The environment paths for storing things like data, config, logs, and cache in the current runtime environment.\" />\n <TypeDeclaration export name=\"EnvPaths\">\n {code`Record<EnvPathType, string>; `}\n </TypeDeclaration>\n <Spacing />\n <TSDoc heading=\"The resolved application directories based on the current operating system and environment variables.\">\n <TSDocRemarks>\n {code`If the \\`DATA_DIR\\`, \\`CONFIG_DIR\\`, \\`CACHE_DIR\\`, \\`LOG_DIR\\`, or \\`TEMP_DIR\\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):\n - **Linux**: directories are generally created in \\`~/.config/<name>\\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))\n - **Windows**: directories are generally created in \\`%AppData%/<name>\\`\n - **MacOS**: directories are generally created in \\`~/Library/Application Support/<name>\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"paths\"\n initializer={code`isMacOS\n ? {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Application Support\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n config: env.CONFIG_DIR\n ? join(String(env.CONFIG_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Preferences\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Caches\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${titleCase(context.config.name)}\")\n : join(homedir, \"Library\", \"Logs\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(tmpdir, \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\")\n }\n : isWindows\n ? {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Data\"),\n config: env.CONFIG_DIR\n ? join(env.CONFIG_DIR!, \"${titleCase(context.config.name)}\")\n : join(env.APPDATA || join(homedir, \"AppData\", \"Roaming\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Config\"),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"Cache\", \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Log\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${titleCase(context.config.name)}\")\n : join(tmpdir, \"${titleCase(context.config.organization)}\", \"${titleCase(context.config.name)}\")\n }\n :\n {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${kebabCase(context.config.name)}\")\n : join(\n env.XDG_DATA_HOME || join(homedir, \".local\", \"share\"),\n \"${kebabCase(context.config.organization)}\",\n \"${kebabCase(context.config.name)}\"\n ),\n config: env.CONFIG_DIR\n ? join(String(env.CONFIG_DIR), \"${kebabCase(context.config.name)}\")\n : join(\n env.XDG_CONFIG_HOME || join(homedir, \".config\"),\n \"${kebabCase(context.config.organization)}\",\n \"${kebabCase(context.config.name)}\"\n ),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${kebabCase(context.config.name)}\")\n : join(env.XDG_CACHE_HOME || join(homedir, \".cache\"), \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${kebabCase(context.config.name)}\")\n : join(env.XDG_STATE_HOME || join(homedir, \".local\", \"state\"), \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${kebabCase(context.config.name)}\")\n : (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR\n ? join((env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR)!, \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\")\n : join(tmpdir, basename(homedir), \"${kebabCase(context.config.organization)}\", \"${kebabCase(context.config.name)}\"))\n } as EnvPaths; `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </EnvBuiltin>\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 { code, Show, splitProps } from \"@alloy-js/core\";\nimport { TypeDeclaration, VarDeclaration } from \"@alloy-js/typescript\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport {\n TSDoc,\n TSDocRemarks\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport {\n EnvBuiltin,\n EnvBuiltinProps\n} from \"@powerlines/plugin-env/components/env-builtin\";\nimport { kebabCase } from \"@stryke/string-format/kebab-case\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { NodeJsPluginContext } from \"../types\";\n\n/**\n * Generates the NodeJs environment configuration module for the Powerlines project.\n */\nexport function NodeJsEnvBuiltin(props: EnvBuiltinProps) {\n const [{ children }, rest] = splitProps(props, [\"children\"]);\n\n const context = usePowerlines<NodeJsPluginContext>();\n\n return (\n <EnvBuiltin\n defaultConfig={code`process.env`}\n {...rest}\n imports={defu(\n {\n \"node:os\": \"os\",\n \"node:path\": [\"basename\", \"join\"]\n },\n rest.imports ?? {}\n )}>\n <VarDeclaration\n export\n const\n name=\"isWindows\"\n doc=\"An indicator specifying whether the current operating system is MacOS (darwin kernel).\"\n initializer={code`/^win/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration\n export\n const\n name=\"isLinux\"\n doc=\"An indicator specifying whether the current operating system is Linux.\"\n initializer={code`/^linux/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration\n export\n const\n name=\"isMacOS\"\n doc=\"An indicator specifying whether the current operating system is MacOS (darwin kernel).\"\n initializer={code`/^darwin/i.test(process.platform); `}\n />\n <Spacing />\n <VarDeclaration const name=\"homedir\" initializer={code`os.homedir(); `} />\n <Spacing />\n <VarDeclaration const name=\"tmpdir\" initializer={code`os.tmpdir(); `} />\n <Spacing />\n <TSDoc heading=\"The environment path types for storing things like data, config, logs, and cache in the current runtime environment.\">\n <TSDocRemarks>\n {`These environment path types are accessed in the {@link EnvPaths} type. `}\n </TSDocRemarks>\n </TSDoc>\n <TypeDeclaration export name=\"EnvPathType\">\n {code`\"data\" | \"config\" | \"cache\" | \"log\" | \"temp\"; `}\n </TypeDeclaration>\n <Spacing />\n <TSDoc heading=\"The environment paths for storing things like data, config, logs, and cache in the current runtime environment.\" />\n <TypeDeclaration export name=\"EnvPaths\">\n {code`Record<EnvPathType, string>; `}\n </TypeDeclaration>\n <Spacing />\n <TSDoc heading=\"The resolved application directories based on the current operating system and environment variables.\">\n <TSDocRemarks>\n {code`If the \\`DATA_DIR\\`, \\`CONFIG_DIR\\`, \\`CACHE_DIR\\`, \\`LOG_DIR\\`, or \\`TEMP_DIR\\` environment variables are set, they will be treated as overrides and used by default. If the environment variables are not set, the paths are determined based on the specific conventions for each operating system (with additional overrides available through operating system specific environment variables):\n - **Linux**: directories are generally created in \\`~/.config/<name>\\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))\n - **Windows**: directories are generally created in \\`%AppData%/<name>\\`\n - **MacOS**: directories are generally created in \\`~/Library/Application Support/<name>\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"paths\"\n initializer={code`isMacOS\n ? {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Application Support\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n config: env.CONFIG_DIR\n ? join(String(env.CONFIG_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Preferences\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(homedir, \"Library\", \"Caches\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${titleCase(context.config.name)}\")\n : join(homedir, \"Library\", \"Logs\", \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${titleCase(\n context.config.name\n )}\")\n : join(tmpdir, \"${titleCase(\n context.config.organization\n )}\", \"${titleCase(context.config.name)}\")\n }\n : isWindows\n ? {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Data\"),\n config: env.CONFIG_DIR\n ? join(env.CONFIG_DIR!, \"${titleCase(context.config.name)}\")\n : join(env.APPDATA || join(homedir, \"AppData\", \"Roaming\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Config\"),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"Cache\", \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${titleCase(context.config.name)}\")\n : join(env.LOCALAPPDATA || join(homedir, \"AppData\", \"Local\"), \"${titleCase(context.config.organization)}\", \"${titleCase(\n context.config.name\n )}\", \"Log\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${titleCase(context.config.name)}\")\n : join(tmpdir, \"${titleCase(context.config.organization)}\", \"${titleCase(context.config.name)}\")\n }\n :\n {\n data: env.DATA_DIR\n ? join(String(env.DATA_DIR), \"${kebabCase(context.config.name)}\")\n : join(\n env.XDG_DATA_HOME || join(homedir, \".local\", \"share\"),\n \"${kebabCase(context.config.organization)}\",\n \"${kebabCase(context.config.name)}\"\n ),\n config: env.CONFIG_DIR\n ? join(String(env.CONFIG_DIR), \"${kebabCase(context.config.name)}\")\n : join(\n env.XDG_CONFIG_HOME || join(homedir, \".config\"),\n \"${kebabCase(context.config.organization)}\",\n \"${kebabCase(context.config.name)}\"\n ),\n cache: env.CACHE_DIR\n ? join(String(env.CACHE_DIR), \"${kebabCase(context.config.name)}\")\n : join(env.XDG_CACHE_HOME || join(homedir, \".cache\"), \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\"),\n log: env.LOG_DIR\n ? join(String(env.LOG_DIR), \"${kebabCase(context.config.name)}\")\n : join(env.XDG_STATE_HOME || join(homedir, \".local\", \"state\"), \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\"),\n temp: env.TEMP_DIR\n ? join(String(env.TEMP_DIR), \"${kebabCase(context.config.name)}\")\n : (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR\n ? join((env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR)!, \"${kebabCase(context.config.organization)}\", \"${kebabCase(\n context.config.name\n )}\")\n : join(tmpdir, basename(homedir), \"${kebabCase(context.config.organization)}\", \"${kebabCase(context.config.name)}\"))\n } as EnvPaths; `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </EnvBuiltin>\n );\n}\n"],"mappings":"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"}
package/dist/index.cjs CHANGED
@@ -8,6 +8,7 @@ let _powerlines_plugin_env = require("@powerlines/plugin-env");
8
8
  _powerlines_plugin_env = require_runtime.__toESM(_powerlines_plugin_env);
9
9
  let _powerlines_plugin_env_helpers_persistence = require("@powerlines/plugin-env/helpers/persistence");
10
10
  let powerlines_typescript = require("powerlines/typescript");
11
+ let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
11
12
 
12
13
  //#region src/index.tsx
13
14
  /**
@@ -27,7 +28,10 @@ const plugin = (options = {}) => {
27
28
  },
28
29
  async prepare() {
29
30
  const result = await (0, _powerlines_plugin_env_helpers_persistence.readEnvTypeReflection)(this, "env");
30
- return (0, _powerlines_plugin_alloy_render.render)(this, <require_components_env_builtin.NodeJsEnvBuiltin defaultConfig={this.config.env.defaultConfig} reflection={result} />);
31
+ return (0, _powerlines_plugin_alloy_render.render)(this, /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(require_components_env_builtin.NodeJsEnvBuiltin, {
32
+ defaultConfig: this.config.env.defaultConfig,
33
+ reflection: result
34
+ }));
31
35
  }
32
36
  }
33
37
  ];
package/dist/index.mjs CHANGED
@@ -4,6 +4,7 @@ import babel from "@powerlines/plugin-babel";
4
4
  import env from "@powerlines/plugin-env";
5
5
  import { readEnvTypeReflection } from "@powerlines/plugin-env/helpers/persistence";
6
6
  import { isMatchFound } from "powerlines/typescript";
7
+ import { jsx } from "@alloy-js/core/jsx-runtime";
7
8
 
8
9
  //#region src/index.tsx
9
10
  /**
@@ -23,7 +24,10 @@ const plugin = (options = {}) => {
23
24
  },
24
25
  async prepare() {
25
26
  const result = await readEnvTypeReflection(this, "env");
26
- return render(this, <NodeJsEnvBuiltin defaultConfig={this.config.env.defaultConfig} reflection={result} />);
27
+ return render(this, /* @__PURE__ */ jsx(NodeJsEnvBuiltin, {
28
+ defaultConfig: this.config.env.defaultConfig,
29
+ reflection: result
30
+ }));
27
31
  }
28
32
  }
29
33
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.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 { render } from \"@powerlines/plugin-alloy/render\";\nimport babel from \"@powerlines/plugin-babel\";\nimport env from \"@powerlines/plugin-env\";\nimport { readEnvTypeReflection } from \"@powerlines/plugin-env/helpers/persistence\";\nimport { Plugin } from \"powerlines\";\nimport { isMatchFound } from \"powerlines/typescript\";\nimport { NodeJsEnvBuiltin } from \"./components/env-builtin\";\nimport { NodeJsPluginContext, NodeJsPluginOptions } from \"./types/plugin\";\n\ndeclare module \"powerlines\" {\n interface Config {\n nodejs?: NodeJsPluginOptions;\n }\n}\n\n/**\n * A package containing a Powerlines plugin for building a NodeJs application.\n */\nexport const plugin = <\n TContext extends NodeJsPluginContext = NodeJsPluginContext\n>(\n options: NodeJsPluginOptions = {}\n): Plugin<TContext>[] => {\n return [\n babel(options.babel),\n env(options.env),\n {\n name: \"nodejs\",\n configResolved() {\n this.devDependencies[\"@types/node\"] = \"^22.14.6\";\n\n this.tsconfig.tsconfigJson.compilerOptions ??= {};\n this.tsconfig.tsconfigJson.compilerOptions.types ??= [];\n if (\n !isMatchFound(\n \"node\",\n this.tsconfig.tsconfigJson.compilerOptions.types\n )\n ) {\n this.tsconfig.tsconfigJson.compilerOptions.types.push(\"node\");\n }\n },\n async prepare() {\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <NodeJsEnvBuiltin\n defaultConfig={this.config.env.defaultConfig}\n reflection={result}\n />\n );\n }\n }\n ] as Plugin<TContext>[];\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;AAoCA,MAAa,UAGX,UAA+B,EAAE,KACV;AACvB,QAAO;EACL,MAAM,QAAQ,MAAM;EACpB,IAAI,QAAQ,IAAI;EAChB;GACE,MAAM;GACN,iBAAiB;AACf,SAAK,gBAAgB,iBAAiB;AAEtC,SAAK,SAAS,aAAa,oBAAoB,EAAE;AACjD,SAAK,SAAS,aAAa,gBAAgB,UAAU,EAAE;AACvD,QACE,CAAC,aACC,QACA,KAAK,SAAS,aAAa,gBAAgB,MAC5C,CAED,MAAK,SAAS,aAAa,gBAAgB,MAAM,KAAK,OAAO;;GAGjE,MAAM,UAAU;IACd,MAAM,SAAS,MAAM,sBAAsB,MAAM,MAAM;AAEvD,WAAO,OACL,MACA,CAAC,iBACC,eAAe,KAAK,OAAO,IAAI,eAC/B,YAAY,WAEf;;GAEJ;EACF"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.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 { render } from \"@powerlines/plugin-alloy/render\";\nimport babel from \"@powerlines/plugin-babel\";\nimport env from \"@powerlines/plugin-env\";\nimport { readEnvTypeReflection } from \"@powerlines/plugin-env/helpers/persistence\";\nimport { Plugin } from \"powerlines\";\nimport { isMatchFound } from \"powerlines/typescript\";\nimport { NodeJsEnvBuiltin } from \"./components/env-builtin\";\nimport { NodeJsPluginContext, NodeJsPluginOptions } from \"./types/plugin\";\n\ndeclare module \"powerlines\" {\n interface Config {\n nodejs?: NodeJsPluginOptions;\n }\n}\n\n/**\n * A package containing a Powerlines plugin for building a NodeJs application.\n */\nexport const plugin = <\n TContext extends NodeJsPluginContext = NodeJsPluginContext\n>(\n options: NodeJsPluginOptions = {}\n): Plugin<TContext>[] => {\n return [\n babel(options.babel),\n env(options.env),\n {\n name: \"nodejs\",\n configResolved() {\n this.devDependencies[\"@types/node\"] = \"^22.14.6\";\n\n this.tsconfig.tsconfigJson.compilerOptions ??= {};\n this.tsconfig.tsconfigJson.compilerOptions.types ??= [];\n if (\n !isMatchFound(\n \"node\",\n this.tsconfig.tsconfigJson.compilerOptions.types\n )\n ) {\n this.tsconfig.tsconfigJson.compilerOptions.types.push(\"node\");\n }\n },\n async prepare() {\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <NodeJsEnvBuiltin\n defaultConfig={this.config.env.defaultConfig}\n reflection={result}\n />\n );\n }\n }\n ] as Plugin<TContext>[];\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;AAoCA,MAAa,UAGX,UAA+B,EAAE,KACV;AACvB,QAAO;EACL,MAAM,QAAQ,MAAM;EACpB,IAAI,QAAQ,IAAI;EAChB;GACE,MAAM;GACN,iBAAiB;AACf,SAAK,gBAAgB,iBAAiB;AAEtC,SAAK,SAAS,aAAa,oBAAoB,EAAE;AACjD,SAAK,SAAS,aAAa,gBAAgB,UAAU,EAAE;AACvD,QACE,CAAC,aACC,QACA,KAAK,SAAS,aAAa,gBAAgB,MAC5C,CAED,MAAK,SAAS,aAAa,gBAAgB,MAAM,KAAK,OAAO;;GAGjE,MAAM,UAAU;IACd,MAAM,SAAS,MAAM,sBAAsB,MAAM,MAAM;AAEvD,WAAO,OACL,MACA,oBAAC,kBAAD;KACE,eAAe,KAAK,OAAO,IAAI;KAC/B,YAAY;KACZ,EACH;;GAEJ;EACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-nodejs",
3
- "version": "0.1.264",
3
+ "version": "0.1.266",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for building a Node.js application.",
6
6
  "repository": {
@@ -119,17 +119,17 @@
119
119
  "dependencies": {
120
120
  "@alloy-js/core": "0.23.0-dev.8",
121
121
  "@alloy-js/typescript": "0.23.0-dev.4",
122
- "@powerlines/plugin-alloy": "^0.25.28",
123
- "@powerlines/plugin-babel": "^0.12.347",
124
- "@powerlines/plugin-env": "^0.16.63",
125
- "@powerlines/plugin-plugin": "^0.12.295",
122
+ "@powerlines/plugin-alloy": "^0.25.30",
123
+ "@powerlines/plugin-babel": "^0.12.349",
124
+ "@powerlines/plugin-env": "^0.16.65",
125
+ "@powerlines/plugin-plugin": "^0.12.297",
126
126
  "@storm-software/config-tools": "1.189.28",
127
127
  "@stryke/string-format": "^0.17.3",
128
128
  "defu": "^6.1.4",
129
- "powerlines": "^0.41.9"
129
+ "powerlines": "^0.41.11"
130
130
  },
131
131
  "devDependencies": { "@types/node": "^25.5.0" },
132
132
  "publishConfig": { "access": "public" },
133
133
  "types": "./dist/index.d.cts",
134
- "gitHead": "74a26c533ea4d67ba1b3e297256309c2e23f6e62"
134
+ "gitHead": "c13dc78b9ef6d6418df534f4ea7181162d06ff1d"
135
135
  }