@powerlines/plugin-nodejs 0.1.269 → 0.1.271
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/README.md +1 -1
- package/dist/components/env-builtin.cjs +91 -81
- package/dist/components/env-builtin.mjs +91 -81
- package/dist/components/env-builtin.mjs.map +1 -1
- package/dist/index.cjs +6 -3
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>🔌 Powerlines</b> monorepo. Powerlines is the "
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://stormsoftware.com/projects/powerlines) [](http://commitizen.github.io/cz-cli/)  
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
2
|
const require_runtime = require('../_virtual/_rolldown/runtime.cjs');
|
|
3
|
+
let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
3
4
|
let _alloy_js_core = require("@alloy-js/core");
|
|
4
5
|
let _alloy_js_typescript = require("@alloy-js/typescript");
|
|
5
6
|
let _powerlines_plugin_alloy_core_components_spacing = require("@powerlines/plugin-alloy/core/components/spacing");
|
|
@@ -10,7 +11,6 @@ let _stryke_string_format_kebab_case = require("@stryke/string-format/kebab-case
|
|
|
10
11
|
let _stryke_string_format_title_case = require("@stryke/string-format/title-case");
|
|
11
12
|
let defu = require("defu");
|
|
12
13
|
defu = require_runtime.__toESM(defu);
|
|
13
|
-
let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
14
14
|
|
|
15
15
|
//#region src/components/env-builtin.tsx
|
|
16
16
|
/**
|
|
@@ -19,80 +19,86 @@ let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
|
19
19
|
function NodeJsEnvBuiltin(props) {
|
|
20
20
|
const [{ children }, rest] = (0, _alloy_js_core.splitProps)(props, ["children"]);
|
|
21
21
|
const context = (0, _powerlines_plugin_alloy_core_contexts_context.usePowerlines)();
|
|
22
|
-
return
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
},
|
|
29
|
-
children
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
22
|
+
return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_env_components_env_builtin.EnvBuiltin, (0, _alloy_js_core_jsx_runtime.mergeProps)({ defaultConfig: _alloy_js_core.code`process.env` }, rest, {
|
|
23
|
+
get imports() {
|
|
24
|
+
return (0, defu.default)({
|
|
25
|
+
"node:os": "os",
|
|
26
|
+
"node:path": ["basename", "join"]
|
|
27
|
+
}, rest.imports ?? {});
|
|
28
|
+
},
|
|
29
|
+
get children() {
|
|
30
|
+
return [
|
|
31
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
32
|
+
"export": true,
|
|
33
|
+
"const": true,
|
|
34
|
+
name: "isWindows",
|
|
35
|
+
doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
|
|
36
|
+
initializer: _alloy_js_core.code`/^win/i.test(process.platform); `
|
|
37
|
+
}),
|
|
38
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
39
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
40
|
+
"export": true,
|
|
41
|
+
"const": true,
|
|
42
|
+
name: "isLinux",
|
|
43
|
+
doc: "An indicator specifying whether the current operating system is Linux.",
|
|
44
|
+
initializer: _alloy_js_core.code`/^linux/i.test(process.platform); `
|
|
45
|
+
}),
|
|
46
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
47
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
48
|
+
"export": true,
|
|
49
|
+
"const": true,
|
|
50
|
+
name: "isMacOS",
|
|
51
|
+
doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
|
|
52
|
+
initializer: _alloy_js_core.code`/^darwin/i.test(process.platform); `
|
|
53
|
+
}),
|
|
54
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
55
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
56
|
+
"const": true,
|
|
57
|
+
name: "homedir",
|
|
58
|
+
initializer: _alloy_js_core.code`os.homedir(); `
|
|
59
|
+
}),
|
|
60
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
61
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
62
|
+
"const": true,
|
|
63
|
+
name: "tmpdir",
|
|
64
|
+
initializer: _alloy_js_core.code`os.tmpdir(); `
|
|
65
|
+
}),
|
|
66
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
67
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
|
|
68
|
+
heading: "The environment path types for storing things like data, config, logs, and cache in the current runtime environment.",
|
|
69
|
+
get children() {
|
|
70
|
+
return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `These environment path types are accessed in the {@link EnvPaths} type. ` });
|
|
71
|
+
}
|
|
72
|
+
}),
|
|
73
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.TypeDeclaration, {
|
|
74
|
+
"export": true,
|
|
75
|
+
name: "EnvPathType",
|
|
76
|
+
children: _alloy_js_core.code`"data" | "config" | "cache" | "log" | "temp"; `
|
|
77
|
+
}),
|
|
78
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
79
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_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." }),
|
|
80
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.TypeDeclaration, {
|
|
81
|
+
"export": true,
|
|
82
|
+
name: "EnvPaths",
|
|
83
|
+
children: _alloy_js_core.code`Record<EnvPathType, string>; `
|
|
84
|
+
}),
|
|
85
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
86
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
|
|
87
|
+
heading: "The resolved application directories based on the current operating system and environment variables.",
|
|
88
|
+
get children() {
|
|
89
|
+
return (0, _alloy_js_core_jsx_runtime.createComponent)(_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):
|
|
86
90
|
- **Linux**: directories are generally created in \`~/.config/<name>\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))
|
|
87
91
|
- **Windows**: directories are generally created in \`%AppData%/<name>\`
|
|
88
92
|
- **MacOS**: directories are generally created in \`~/Library/Application Support/<name>\`
|
|
89
|
-
` })
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
` });
|
|
94
|
+
}
|
|
95
|
+
}),
|
|
96
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
|
|
97
|
+
"export": true,
|
|
98
|
+
"const": true,
|
|
99
|
+
name: "paths",
|
|
100
|
+
get initializer() {
|
|
101
|
+
return _alloy_js_core.code`isMacOS
|
|
96
102
|
? {
|
|
97
103
|
data: env.DATA_DIR
|
|
98
104
|
? join(String(env.DATA_DIR), "${(0, _stryke_string_format_title_case.titleCase)(context.config.name)}")
|
|
@@ -155,15 +161,19 @@ function NodeJsEnvBuiltin(props) {
|
|
|
155
161
|
: (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR
|
|
156
162
|
? 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)}")
|
|
157
163
|
: join(tmpdir, basename(homedir), "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.organization)}", "${(0, _stryke_string_format_kebab_case.kebabCase)(context.config.name)}"))
|
|
158
|
-
} as EnvPaths;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
164
|
+
} as EnvPaths; `;
|
|
165
|
+
}
|
|
166
|
+
}),
|
|
167
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
|
|
168
|
+
(0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
|
|
169
|
+
get when() {
|
|
170
|
+
return Boolean(children);
|
|
171
|
+
},
|
|
172
|
+
children
|
|
173
|
+
})
|
|
174
|
+
];
|
|
175
|
+
}
|
|
176
|
+
}));
|
|
167
177
|
}
|
|
168
178
|
|
|
169
179
|
//#endregion
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
|
|
1
2
|
import { Show, code, splitProps } from "@alloy-js/core";
|
|
2
3
|
import { TypeDeclaration, VarDeclaration } from "@alloy-js/typescript";
|
|
3
4
|
import { Spacing } from "@powerlines/plugin-alloy/core/components/spacing";
|
|
@@ -7,7 +8,6 @@ import { EnvBuiltin } from "@powerlines/plugin-env/components/env-builtin";
|
|
|
7
8
|
import { kebabCase } from "@stryke/string-format/kebab-case";
|
|
8
9
|
import { titleCase } from "@stryke/string-format/title-case";
|
|
9
10
|
import defu from "defu";
|
|
10
|
-
import { jsx, jsxs } from "@alloy-js/core/jsx-runtime";
|
|
11
11
|
|
|
12
12
|
//#region src/components/env-builtin.tsx
|
|
13
13
|
/**
|
|
@@ -16,80 +16,86 @@ import { jsx, jsxs } from "@alloy-js/core/jsx-runtime";
|
|
|
16
16
|
function NodeJsEnvBuiltin(props) {
|
|
17
17
|
const [{ children }, rest] = splitProps(props, ["children"]);
|
|
18
18
|
const context = usePowerlines();
|
|
19
|
-
return
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
},
|
|
26
|
-
children
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
19
|
+
return createComponent(EnvBuiltin, mergeProps({ defaultConfig: code`process.env` }, rest, {
|
|
20
|
+
get imports() {
|
|
21
|
+
return defu({
|
|
22
|
+
"node:os": "os",
|
|
23
|
+
"node:path": ["basename", "join"]
|
|
24
|
+
}, rest.imports ?? {});
|
|
25
|
+
},
|
|
26
|
+
get children() {
|
|
27
|
+
return [
|
|
28
|
+
createComponent(VarDeclaration, {
|
|
29
|
+
"export": true,
|
|
30
|
+
"const": true,
|
|
31
|
+
name: "isWindows",
|
|
32
|
+
doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
|
|
33
|
+
initializer: code`/^win/i.test(process.platform); `
|
|
34
|
+
}),
|
|
35
|
+
createComponent(Spacing, {}),
|
|
36
|
+
createComponent(VarDeclaration, {
|
|
37
|
+
"export": true,
|
|
38
|
+
"const": true,
|
|
39
|
+
name: "isLinux",
|
|
40
|
+
doc: "An indicator specifying whether the current operating system is Linux.",
|
|
41
|
+
initializer: code`/^linux/i.test(process.platform); `
|
|
42
|
+
}),
|
|
43
|
+
createComponent(Spacing, {}),
|
|
44
|
+
createComponent(VarDeclaration, {
|
|
45
|
+
"export": true,
|
|
46
|
+
"const": true,
|
|
47
|
+
name: "isMacOS",
|
|
48
|
+
doc: "An indicator specifying whether the current operating system is MacOS (darwin kernel).",
|
|
49
|
+
initializer: code`/^darwin/i.test(process.platform); `
|
|
50
|
+
}),
|
|
51
|
+
createComponent(Spacing, {}),
|
|
52
|
+
createComponent(VarDeclaration, {
|
|
53
|
+
"const": true,
|
|
54
|
+
name: "homedir",
|
|
55
|
+
initializer: code`os.homedir(); `
|
|
56
|
+
}),
|
|
57
|
+
createComponent(Spacing, {}),
|
|
58
|
+
createComponent(VarDeclaration, {
|
|
59
|
+
"const": true,
|
|
60
|
+
name: "tmpdir",
|
|
61
|
+
initializer: code`os.tmpdir(); `
|
|
62
|
+
}),
|
|
63
|
+
createComponent(Spacing, {}),
|
|
64
|
+
createComponent(TSDoc, {
|
|
65
|
+
heading: "The environment path types for storing things like data, config, logs, and cache in the current runtime environment.",
|
|
66
|
+
get children() {
|
|
67
|
+
return createComponent(TSDocRemarks, { children: `These environment path types are accessed in the {@link EnvPaths} type. ` });
|
|
68
|
+
}
|
|
69
|
+
}),
|
|
70
|
+
createComponent(TypeDeclaration, {
|
|
71
|
+
"export": true,
|
|
72
|
+
name: "EnvPathType",
|
|
73
|
+
children: code`"data" | "config" | "cache" | "log" | "temp"; `
|
|
74
|
+
}),
|
|
75
|
+
createComponent(Spacing, {}),
|
|
76
|
+
createComponent(TSDoc, { heading: "The environment paths for storing things like data, config, logs, and cache in the current runtime environment." }),
|
|
77
|
+
createComponent(TypeDeclaration, {
|
|
78
|
+
"export": true,
|
|
79
|
+
name: "EnvPaths",
|
|
80
|
+
children: code`Record<EnvPathType, string>; `
|
|
81
|
+
}),
|
|
82
|
+
createComponent(Spacing, {}),
|
|
83
|
+
createComponent(TSDoc, {
|
|
84
|
+
heading: "The resolved application directories based on the current operating system and environment variables.",
|
|
85
|
+
get children() {
|
|
86
|
+
return createComponent(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):
|
|
83
87
|
- **Linux**: directories are generally created in \`~/.config/<name>\` (this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/))
|
|
84
88
|
- **Windows**: directories are generally created in \`%AppData%/<name>\`
|
|
85
89
|
- **MacOS**: directories are generally created in \`~/Library/Application Support/<name>\`
|
|
86
|
-
` })
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
` });
|
|
91
|
+
}
|
|
92
|
+
}),
|
|
93
|
+
createComponent(VarDeclaration, {
|
|
94
|
+
"export": true,
|
|
95
|
+
"const": true,
|
|
96
|
+
name: "paths",
|
|
97
|
+
get initializer() {
|
|
98
|
+
return code`isMacOS
|
|
93
99
|
? {
|
|
94
100
|
data: env.DATA_DIR
|
|
95
101
|
? join(String(env.DATA_DIR), "${titleCase(context.config.name)}")
|
|
@@ -152,15 +158,19 @@ function NodeJsEnvBuiltin(props) {
|
|
|
152
158
|
: (env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR
|
|
153
159
|
? join((env.DEVENV_RUNTIME || env.XDG_RUNTIME_DIR)!, "${kebabCase(context.config.organization)}", "${kebabCase(context.config.name)}")
|
|
154
160
|
: join(tmpdir, basename(homedir), "${kebabCase(context.config.organization)}", "${kebabCase(context.config.name)}"))
|
|
155
|
-
} as EnvPaths;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
} as EnvPaths; `;
|
|
162
|
+
}
|
|
163
|
+
}),
|
|
164
|
+
createComponent(Spacing, {}),
|
|
165
|
+
createComponent(Show, {
|
|
166
|
+
get when() {
|
|
167
|
+
return Boolean(children);
|
|
168
|
+
},
|
|
169
|
+
children
|
|
170
|
+
})
|
|
171
|
+
];
|
|
172
|
+
}
|
|
173
|
+
}));
|
|
164
174
|
}
|
|
165
175
|
|
|
166
176
|
//#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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
|
|
3
3
|
const require_components_env_builtin = require('./components/env-builtin.cjs');
|
|
4
|
+
let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
4
5
|
let _powerlines_plugin_alloy_render = require("@powerlines/plugin-alloy/render");
|
|
5
6
|
let _powerlines_plugin_babel = require("@powerlines/plugin-babel");
|
|
6
7
|
_powerlines_plugin_babel = require_runtime.__toESM(_powerlines_plugin_babel);
|
|
@@ -8,7 +9,6 @@ let _powerlines_plugin_env = require("@powerlines/plugin-env");
|
|
|
8
9
|
_powerlines_plugin_env = require_runtime.__toESM(_powerlines_plugin_env);
|
|
9
10
|
let _powerlines_plugin_env_helpers_persistence = require("@powerlines/plugin-env/helpers/persistence");
|
|
10
11
|
let powerlines_typescript = require("powerlines/typescript");
|
|
11
|
-
let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
12
12
|
|
|
13
13
|
//#region src/index.tsx
|
|
14
14
|
/**
|
|
@@ -27,9 +27,12 @@ const plugin = (options = {}) => {
|
|
|
27
27
|
if (!(0, powerlines_typescript.isMatchFound)("node", this.tsconfig.tsconfigJson.compilerOptions.types)) this.tsconfig.tsconfigJson.compilerOptions.types.push("node");
|
|
28
28
|
},
|
|
29
29
|
async prepare() {
|
|
30
|
+
const _self$ = this;
|
|
30
31
|
const result = await (0, _powerlines_plugin_env_helpers_persistence.readEnvTypeReflection)(this, "env");
|
|
31
|
-
return (0, _powerlines_plugin_alloy_render.render)(this,
|
|
32
|
-
defaultConfig
|
|
32
|
+
return (0, _powerlines_plugin_alloy_render.render)(this, (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_env_builtin.NodeJsEnvBuiltin, {
|
|
33
|
+
get defaultConfig() {
|
|
34
|
+
return _self$.config.env.defaultConfig;
|
|
35
|
+
},
|
|
33
36
|
reflection: result
|
|
34
37
|
}));
|
|
35
38
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NodeJsEnvBuiltin } from "./components/env-builtin.mjs";
|
|
2
|
+
import { createComponent } from "@alloy-js/core/jsx-runtime";
|
|
2
3
|
import { render } from "@powerlines/plugin-alloy/render";
|
|
3
4
|
import babel from "@powerlines/plugin-babel";
|
|
4
5
|
import env from "@powerlines/plugin-env";
|
|
5
6
|
import { readEnvTypeReflection } from "@powerlines/plugin-env/helpers/persistence";
|
|
6
7
|
import { isMatchFound } from "powerlines/typescript";
|
|
7
|
-
import { jsx } from "@alloy-js/core/jsx-runtime";
|
|
8
8
|
|
|
9
9
|
//#region src/index.tsx
|
|
10
10
|
/**
|
|
@@ -23,9 +23,12 @@ const plugin = (options = {}) => {
|
|
|
23
23
|
if (!isMatchFound("node", this.tsconfig.tsconfigJson.compilerOptions.types)) this.tsconfig.tsconfigJson.compilerOptions.types.push("node");
|
|
24
24
|
},
|
|
25
25
|
async prepare() {
|
|
26
|
+
const _self$ = this;
|
|
26
27
|
const result = await readEnvTypeReflection(this, "env");
|
|
27
|
-
return render(this,
|
|
28
|
-
defaultConfig
|
|
28
|
+
return render(this, createComponent(NodeJsEnvBuiltin, {
|
|
29
|
+
get defaultConfig() {
|
|
30
|
+
return _self$.config.env.defaultConfig;
|
|
31
|
+
},
|
|
29
32
|
reflection: result
|
|
30
33
|
}));
|
|
31
34
|
}
|
package/dist/index.mjs.map
CHANGED
|
@@ -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,
|
|
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,UAAS,UAAA,EAAA,KAAA;AACpB,QAAA;EAAQ,MAAC,QAAQ,MAAA;EAAA,IAAA,QAAsB,IAAA;EAAA;GACxC,MAAA;GACC,iBAAS;AACR,SAAO,gBAAe,iBAAA;AACvB,SAAO,SAAA,aAAA,oBAAA,EAAA;AACL,SAAM,SAAQ,aAAM,gBAAA,UAAA,EAAA;AACpB,QAAI,CAAA,aAAY,QAAA,KAAA,SAAA,aAAA,gBAAA,MAAA,CAChB,MAAA,SAAA,aAAA,gBAAA,MAAA,KAAA,OAAA;;GAGA,MAAI,UAAK;;IAEP,MAAM,SAAS,MAAC,sBAAa,MAAoB,MAAE;AACnD,WAAO,OAAA,MAAS,gBAAa,kBAA2B;KACtD,IAAG,gBAAA;AACD,aAAC,OAAY,OAAA,IAAA;;KAEf,YAAS;KACV,CAAC,CAAC;;GAEN;EAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-nodejs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.271",
|
|
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.
|
|
123
|
-
"@powerlines/plugin-babel": "^0.12.
|
|
124
|
-
"@powerlines/plugin-env": "^0.16.
|
|
125
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
122
|
+
"@powerlines/plugin-alloy": "^0.25.35",
|
|
123
|
+
"@powerlines/plugin-babel": "^0.12.352",
|
|
124
|
+
"@powerlines/plugin-env": "^0.16.70",
|
|
125
|
+
"@powerlines/plugin-plugin": "^0.12.300",
|
|
126
126
|
"@storm-software/config-tools": "1.189.28",
|
|
127
|
-
"@stryke/string-format": "^0.17.
|
|
127
|
+
"@stryke/string-format": "^0.17.4",
|
|
128
128
|
"defu": "^6.1.4",
|
|
129
|
-
"powerlines": "^0.41.
|
|
129
|
+
"powerlines": "^0.41.14"
|
|
130
130
|
},
|
|
131
131
|
"devDependencies": { "@types/node": "^25.5.0" },
|
|
132
132
|
"publishConfig": { "access": "public" },
|
|
133
133
|
"types": "./dist/index.d.cts",
|
|
134
|
-
"gitHead": "
|
|
134
|
+
"gitHead": "9a873b7c4bc2a376b58e2721aa6211ca162c1f61"
|
|
135
135
|
}
|