@powerlines/plugin-env 0.14.21 → 0.14.23
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/dist/_virtual/rolldown_runtime.cjs +37 -1
- package/dist/_virtual/rolldown_runtime.mjs +29 -1
- package/dist/babel/index.cjs +1 -1
- package/dist/babel/index.mjs +3 -1
- package/dist/babel/plugin.cjs +120 -4
- package/dist/babel/plugin.d.cts +2 -3
- package/dist/babel/plugin.d.mts +3 -2
- package/dist/babel/plugin.mjs +118 -4
- package/dist/components/docs.cjs +71 -1
- package/dist/components/docs.mjs +70 -1
- package/dist/components/env.cjs +432 -11
- package/dist/components/env.mjs +430 -9
- package/dist/components/index.cjs +6 -1
- package/dist/components/index.mjs +4 -1
- package/dist/deepkit/schemas/reflection.cjs +3940 -1
- package/dist/deepkit/schemas/reflection.mjs +3938 -1
- package/dist/deepkit/schemas/reflection2.cjs +4112 -1
- package/dist/deepkit/schemas/reflection2.mjs +4110 -1
- package/dist/deepkit/src/capnp.cjs +913 -1
- package/dist/deepkit/src/capnp.mjs +911 -1
- package/dist/deepkit/src/esbuild-plugin.cjs +47 -4
- package/dist/deepkit/src/esbuild-plugin.mjs +46 -4
- package/dist/deepkit/src/reflect-type.cjs +22 -1
- package/dist/deepkit/src/reflect-type.mjs +20 -1
- package/dist/deepkit/src/resolve-reflections.cjs +16 -1
- package/dist/deepkit/src/resolve-reflections.mjs +15 -1
- package/dist/deepkit/src/transformer.cjs +52 -1
- package/dist/deepkit/src/transformer.mjs +49 -1
- package/dist/deepkit/src/transpile.cjs +29 -1
- package/dist/deepkit/src/transpile.mjs +27 -1
- package/dist/deepkit/src/utilities.cjs +66 -1
- package/dist/deepkit/src/utilities.mjs +65 -1
- package/dist/deepkit/src/vendor/type-compiler/index.cjs +38 -1
- package/dist/deepkit/src/vendor/type-compiler/index.mjs +19 -1
- package/dist/deepkit/src/vendor/type.cjs +20 -1
- package/dist/deepkit/src/vendor/type.mjs +11 -1
- package/dist/helpers/automd-generator.cjs +22 -1
- package/dist/helpers/automd-generator.mjs +21 -1
- package/dist/helpers/create-reflection-resource.cjs +55 -1
- package/dist/helpers/create-reflection-resource.mjs +54 -1
- package/dist/helpers/index.cjs +6 -1
- package/dist/helpers/index.mjs +8 -1
- package/dist/helpers/load.cjs +83 -1
- package/dist/helpers/load.d.cts +2 -2
- package/dist/helpers/load.d.mts +3 -2
- package/dist/helpers/load.mjs +80 -1
- package/dist/helpers/persistence.cjs +214 -1
- package/dist/helpers/persistence.d.cts +1 -1
- package/dist/helpers/persistence.d.mts +1 -1
- package/dist/helpers/persistence.mjs +202 -1
- package/dist/helpers/reflect.cjs +111 -1
- package/dist/helpers/reflect.mjs +103 -1
- package/dist/helpers/source-file-env.cjs +28 -1
- package/dist/helpers/source-file-env.mjs +26 -1
- package/dist/helpers/template-helpers.cjs +42 -1
- package/dist/helpers/template-helpers.mjs +41 -1
- package/dist/index.cjs +203 -5
- package/dist/index.d.cts +1 -3
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +170 -5
- package/dist/plugin-alloy/src/core/components/output.cjs +45 -1
- package/dist/plugin-alloy/src/core/components/output.mjs +44 -1
- package/dist/plugin-alloy/src/core/contexts/context.cjs +11 -1
- package/dist/plugin-alloy/src/core/contexts/context.mjs +10 -1
- package/dist/plugin-alloy/src/index.cjs +93 -1
- package/dist/plugin-alloy/src/index.mjs +91 -1
- package/dist/plugin-alloy/src/types/plugin.d.cts +2 -2
- package/dist/plugin-alloy/src/types/plugin.d.mts +2 -2
- package/dist/plugin-automd/src/index.cjs +101 -1
- package/dist/plugin-automd/src/index.mjs +98 -1
- package/dist/plugin-automd/src/types/plugin.d.mts +2 -2
- package/dist/plugin-babel/src/helpers/ast-utils.cjs +10 -1
- package/dist/plugin-babel/src/helpers/ast-utils.mjs +9 -1
- package/dist/plugin-babel/src/helpers/create-plugin.cjs +41 -1
- package/dist/plugin-babel/src/helpers/create-plugin.mjs +39 -1
- package/dist/plugin-babel/src/helpers/filters.cjs +23 -1
- package/dist/plugin-babel/src/helpers/filters.mjs +21 -1
- package/dist/plugin-babel/src/helpers/index.cjs +5 -1
- package/dist/plugin-babel/src/helpers/index.mjs +7 -1
- package/dist/plugin-babel/src/helpers/module-helpers.cjs +38 -1
- package/dist/plugin-babel/src/helpers/module-helpers.mjs +35 -1
- package/dist/plugin-babel/src/helpers/options.cjs +50 -1
- package/dist/plugin-babel/src/helpers/options.mjs +47 -1
- package/dist/plugin-babel/src/index.cjs +91 -1
- package/dist/plugin-babel/src/index.mjs +89 -1
- package/dist/plugin-babel/src/types/plugin.d.cts +2 -2
- package/dist/plugin-babel/src/types/plugin.d.mts +2 -2
- package/dist/powerlines/schemas/fs.d.mts +1 -0
- package/dist/powerlines/src/api.d.mts +7 -0
- package/dist/powerlines/src/index.d.mts +12 -0
- package/dist/powerlines/src/internal/helpers/hooks.d.mts +5 -0
- package/dist/powerlines/src/lib/build/esbuild.cjs +102 -14
- package/dist/powerlines/src/lib/build/esbuild.mjs +100 -14
- package/dist/powerlines/src/lib/entry.cjs +12 -1
- package/dist/powerlines/src/lib/entry.mjs +14 -1
- package/dist/powerlines/src/lib/logger.cjs +41 -1
- package/dist/powerlines/src/lib/logger.mjs +39 -1
- package/dist/powerlines/src/lib/utilities/bundle.cjs +35 -1
- package/dist/powerlines/src/lib/utilities/bundle.mjs +34 -1
- package/dist/powerlines/src/lib/utilities/resolve.cjs +30 -1
- package/dist/powerlines/src/lib/utilities/resolve.mjs +29 -1
- package/dist/powerlines/src/plugin-utils/paths.cjs +1 -1
- package/dist/powerlines/src/plugin-utils/paths.mjs +3 -1
- package/dist/powerlines/src/types/api.d.mts +5 -0
- package/dist/powerlines/src/types/babel.d.cts +3 -2
- package/dist/powerlines/src/types/babel.d.mts +3 -2
- package/dist/powerlines/src/types/commands.d.cts +1 -1
- package/dist/powerlines/src/types/commands.d.mts +2 -2
- package/dist/powerlines/src/types/config.d.cts +5 -5
- package/dist/powerlines/src/types/config.d.mts +6 -6
- package/dist/powerlines/src/types/context.d.cts +28 -4
- package/dist/powerlines/src/types/context.d.mts +30 -6
- package/dist/powerlines/src/types/fs.d.cts +1 -1
- package/dist/powerlines/src/types/fs.d.mts +1 -1
- package/dist/powerlines/src/types/index.d.mts +12 -0
- package/dist/powerlines/src/types/plugin.d.cts +3 -3
- package/dist/powerlines/src/types/plugin.d.mts +4 -4
- package/dist/powerlines/src/types/resolved.d.cts +1 -1
- package/dist/powerlines/src/types/resolved.d.mts +2 -2
- package/dist/powerlines/src/types/tsconfig.d.mts +1 -1
- package/dist/powerlines/src/types/unplugin.d.mts +7 -0
- package/dist/types/index.mjs +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.mjs +1 -1
- package/dist/types/runtime.mjs +1 -1
- package/package.json +16 -16
- package/dist/babel/index.d.cts +0 -1
- package/dist/helpers/index.d.cts +0 -6
|
@@ -1,14 +1,100 @@
|
|
|
1
|
-
import"../entry.mjs";
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import "../entry.mjs";
|
|
2
|
+
import { replacePath } from "@stryke/path/replace";
|
|
3
|
+
import { joinPaths } from "@stryke/path/join-paths";
|
|
4
|
+
import defu from "defu";
|
|
5
|
+
import { isString } from "@stryke/type-checks/is-string";
|
|
6
|
+
import { omit } from "@stryke/helpers/omit";
|
|
7
|
+
import { camelCase } from "@stryke/string-format/camel-case";
|
|
8
|
+
|
|
9
|
+
//#region ../powerlines/src/lib/build/esbuild.ts
|
|
10
|
+
const DEFAULT_ESBUILD_CONFIG = {
|
|
11
|
+
target: "esnext",
|
|
12
|
+
platform: "neutral",
|
|
13
|
+
format: "esm",
|
|
14
|
+
write: true,
|
|
15
|
+
minify: true,
|
|
16
|
+
sourcemap: false,
|
|
17
|
+
bundle: true,
|
|
18
|
+
treeShaking: true,
|
|
19
|
+
keepNames: true,
|
|
20
|
+
splitting: true,
|
|
21
|
+
logLevel: "silent"
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Resolves the esbuild options.
|
|
25
|
+
*
|
|
26
|
+
* @param context - The build context.
|
|
27
|
+
* @returns The resolved esbuild options.
|
|
28
|
+
*/
|
|
29
|
+
function extractESBuildConfig(context) {
|
|
30
|
+
const inject = context.config.build.override.inject ?? context.config.build.inject;
|
|
31
|
+
if (inject && Object.keys(inject).length > 0) context.fs.writeSync(joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js"), Object.entries(inject).map(([key, value]) => {
|
|
32
|
+
if (value) if (Array.isArray(value)) {
|
|
33
|
+
if (camelCase(key) !== key) {
|
|
34
|
+
if (value.length === 1) return `
|
|
35
|
+
import ${camelCase(key)} from "${value[0]}";
|
|
36
|
+
export { ${camelCase(key)} as "${key}" }`;
|
|
37
|
+
else if (value.length > 1) return `
|
|
38
|
+
import ${value[1] === "*" ? `* as ${camelCase(key)}` : `{ ${value[1]} as ${camelCase(key)} }`} from "${value[0]}";
|
|
39
|
+
export { ${camelCase(key)} as "${key}" }`;
|
|
40
|
+
} else if (value.length === 1) return `
|
|
41
|
+
import ${key} from "${value[0]}";
|
|
42
|
+
export { ${key} };`;
|
|
43
|
+
else if (value.length > 1) return `
|
|
44
|
+
import ${value[1] === "*" ? `* as ${key}` : `{ ${value[1]} as ${key} }`} from "${value[0]}";
|
|
45
|
+
export { ${key} };`;
|
|
46
|
+
} else if (camelCase(key) !== key) return `
|
|
47
|
+
import ${camelCase(key)} from "${value[0]}";
|
|
48
|
+
export { ${camelCase(key)} as "${key}" }`;
|
|
49
|
+
else return `
|
|
50
|
+
import ${key} from "${value}";
|
|
51
|
+
export { ${key} };`;
|
|
52
|
+
return "";
|
|
53
|
+
}).join("\n"));
|
|
54
|
+
return defu({
|
|
55
|
+
alias: context.builtins.reduce((ret, id) => {
|
|
56
|
+
if (!ret[id]) {
|
|
57
|
+
const path = context.fs.ids[id];
|
|
58
|
+
if (path) ret[id] = path;
|
|
59
|
+
}
|
|
60
|
+
return ret;
|
|
61
|
+
}, context.config.build.alias ? Array.isArray(context.config.build.alias) ? context.config.build.alias.reduce((ret, alias) => {
|
|
62
|
+
if (!ret[alias.find.toString()]) ret[alias.find.toString()] = alias.replacement;
|
|
63
|
+
return ret;
|
|
64
|
+
}, {}) : context.config.build.alias : {}),
|
|
65
|
+
inject: inject && Object.keys(inject).length > 0 ? [joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js")] : void 0
|
|
66
|
+
}, context.config.build.variant === "esbuild" ? omit(context.config.build.override, [
|
|
67
|
+
"alias",
|
|
68
|
+
"inject",
|
|
69
|
+
"external",
|
|
70
|
+
"noExternal",
|
|
71
|
+
"skipNodeModulesBundle",
|
|
72
|
+
"extensions"
|
|
73
|
+
]) : {}, context.config.build.variant === "esbuild" ? omit(context.config.build, [
|
|
74
|
+
"alias",
|
|
75
|
+
"inject",
|
|
76
|
+
"external",
|
|
77
|
+
"noExternal",
|
|
78
|
+
"skipNodeModulesBundle",
|
|
79
|
+
"extensions",
|
|
80
|
+
"variant",
|
|
81
|
+
"override"
|
|
82
|
+
]) : {}, {
|
|
83
|
+
mainFields: context.config.build.mainFields,
|
|
84
|
+
conditions: context.config.build.conditions,
|
|
85
|
+
define: context.config.build.define,
|
|
86
|
+
resolveExtensions: context.config.build.extensions,
|
|
87
|
+
packages: context.config.build.skipNodeModulesBundle ? "external" : context.config.build.variant === "esbuild" ? context.config.build.packages : void 0,
|
|
88
|
+
format: Array.isArray(context.config.output.format) ? context.config.output.format[0] : context.config.output.format,
|
|
89
|
+
platform: context.config.build.platform,
|
|
90
|
+
treeShaking: Boolean(context.config.build?.treeshake) || context.config.build?.treeShaking,
|
|
91
|
+
outdir: context.config.output.buildPath,
|
|
92
|
+
tsconfig: context.tsconfig.tsconfigFilePath,
|
|
93
|
+
minify: context.config.mode !== "development",
|
|
94
|
+
metafile: context.config.mode === "development",
|
|
95
|
+
sourcemap: context.config.mode === "development"
|
|
96
|
+
}, DEFAULT_ESBUILD_CONFIG);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
//#endregion
|
|
100
|
+
export { extractESBuildConfig };
|
|
@@ -1 +1,12 @@
|
|
|
1
|
-
require(
|
|
1
|
+
require('../plugin-utils/paths.cjs');
|
|
2
|
+
let __stryke_path_replace = require("@stryke/path/replace");
|
|
3
|
+
let __stryke_convert_to_array = require("@stryke/convert/to-array");
|
|
4
|
+
let __stryke_fs_is_file = require("@stryke/fs/is-file");
|
|
5
|
+
let __stryke_fs_list_files = require("@stryke/fs/list-files");
|
|
6
|
+
let __stryke_path_append = require("@stryke/path/append");
|
|
7
|
+
let __stryke_path_join_paths = require("@stryke/path/join-paths");
|
|
8
|
+
let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
|
|
9
|
+
let __stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
|
|
10
|
+
let __stryke_convert_parse_type_definition = require("@stryke/convert/parse-type-definition");
|
|
11
|
+
let __stryke_helpers_get_unique = require("@stryke/helpers/get-unique");
|
|
12
|
+
require("@stryke/hash/murmurhash");
|
|
@@ -1 +1,14 @@
|
|
|
1
|
-
import"../plugin-utils/paths.mjs";
|
|
1
|
+
import "../plugin-utils/paths.mjs";
|
|
2
|
+
import { replacePath } from "@stryke/path/replace";
|
|
3
|
+
import { toArray } from "@stryke/convert/to-array";
|
|
4
|
+
import "@stryke/fs/is-file";
|
|
5
|
+
import { listFiles } from "@stryke/fs/list-files";
|
|
6
|
+
import { appendPath } from "@stryke/path/append";
|
|
7
|
+
import { joinPaths } from "@stryke/path/join-paths";
|
|
8
|
+
import { isSetString } from "@stryke/type-checks/is-set-string";
|
|
9
|
+
import { isString } from "@stryke/type-checks/is-string";
|
|
10
|
+
import { parseTypeDefinition } from "@stryke/convert/parse-type-definition";
|
|
11
|
+
import { getUniqueBy } from "@stryke/helpers/get-unique";
|
|
12
|
+
import "@stryke/hash/murmurhash";
|
|
13
|
+
|
|
14
|
+
export { };
|
|
@@ -1 +1,41 @@
|
|
|
1
|
-
const
|
|
1
|
+
const require_rolldown_runtime = require('../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
let __storm_software_config_tools_types = require("@storm-software/config-tools/types");
|
|
3
|
+
let chalk = require("chalk");
|
|
4
|
+
chalk = require_rolldown_runtime.__toESM(chalk);
|
|
5
|
+
require("@storm-software/config-tools/logger");
|
|
6
|
+
require("@storm-software/config-tools/utilities/colors");
|
|
7
|
+
require("@stryke/helpers/noop");
|
|
8
|
+
let __stryke_string_format_kebab_case = require("@stryke/string-format/kebab-case");
|
|
9
|
+
let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
|
|
10
|
+
|
|
11
|
+
//#region ../powerlines/src/lib/logger.ts
|
|
12
|
+
const BADGE_COLORS = [
|
|
13
|
+
"#00A0DD",
|
|
14
|
+
"#6FCE4E",
|
|
15
|
+
"#FBBF24",
|
|
16
|
+
"#F43F5E",
|
|
17
|
+
"#3B82F6",
|
|
18
|
+
"#A855F7",
|
|
19
|
+
"#469592",
|
|
20
|
+
"#288EDF",
|
|
21
|
+
"#D8B4FE",
|
|
22
|
+
"#10B981",
|
|
23
|
+
"#EF4444",
|
|
24
|
+
"#F0EC56",
|
|
25
|
+
"#F472B6",
|
|
26
|
+
"#22D3EE",
|
|
27
|
+
"#EAB308",
|
|
28
|
+
"#84CC16",
|
|
29
|
+
"#F87171",
|
|
30
|
+
"#0EA5E9",
|
|
31
|
+
"#D946EF",
|
|
32
|
+
"#FACC15",
|
|
33
|
+
"#34D399",
|
|
34
|
+
"#8B5CF6"
|
|
35
|
+
];
|
|
36
|
+
const extendLog = (logFn, name) => {
|
|
37
|
+
return (type, ...args) => logFn(type, ` ${chalk.default.inverse.hex(BADGE_COLORS[name.split("").map((char) => char.charCodeAt(0)).reduce((ret, charCode) => ret + charCode, 0) % BADGE_COLORS.length] || BADGE_COLORS[0])(` ${(0, __stryke_string_format_title_case.titleCase)(name)} `)} ${args.join(" ")} `);
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
//#endregion
|
|
41
|
+
exports.extendLog = extendLog;
|
|
@@ -1 +1,39 @@
|
|
|
1
|
-
import{LogLevelLabel
|
|
1
|
+
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
2
|
+
import chalk from "chalk";
|
|
3
|
+
import "@storm-software/config-tools/logger";
|
|
4
|
+
import "@storm-software/config-tools/utilities/colors";
|
|
5
|
+
import "@stryke/helpers/noop";
|
|
6
|
+
import { kebabCase } from "@stryke/string-format/kebab-case";
|
|
7
|
+
import { titleCase } from "@stryke/string-format/title-case";
|
|
8
|
+
|
|
9
|
+
//#region ../powerlines/src/lib/logger.ts
|
|
10
|
+
const BADGE_COLORS = [
|
|
11
|
+
"#00A0DD",
|
|
12
|
+
"#6FCE4E",
|
|
13
|
+
"#FBBF24",
|
|
14
|
+
"#F43F5E",
|
|
15
|
+
"#3B82F6",
|
|
16
|
+
"#A855F7",
|
|
17
|
+
"#469592",
|
|
18
|
+
"#288EDF",
|
|
19
|
+
"#D8B4FE",
|
|
20
|
+
"#10B981",
|
|
21
|
+
"#EF4444",
|
|
22
|
+
"#F0EC56",
|
|
23
|
+
"#F472B6",
|
|
24
|
+
"#22D3EE",
|
|
25
|
+
"#EAB308",
|
|
26
|
+
"#84CC16",
|
|
27
|
+
"#F87171",
|
|
28
|
+
"#0EA5E9",
|
|
29
|
+
"#D946EF",
|
|
30
|
+
"#FACC15",
|
|
31
|
+
"#34D399",
|
|
32
|
+
"#8B5CF6"
|
|
33
|
+
];
|
|
34
|
+
const extendLog = (logFn, name) => {
|
|
35
|
+
return (type, ...args) => logFn(type, ` ${chalk.inverse.hex(BADGE_COLORS[name.split("").map((char) => char.charCodeAt(0)).reduce((ret, charCode) => ret + charCode, 0) % BADGE_COLORS.length] || BADGE_COLORS[0])(` ${titleCase(name)} `)} ${args.join(" ")} `);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
//#endregion
|
|
39
|
+
export { extendLog };
|
|
@@ -1 +1,35 @@
|
|
|
1
|
-
const
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
const require_esbuild = require('../build/esbuild.cjs');
|
|
3
|
+
let __storm_software_config_tools_types = require("@storm-software/config-tools/types");
|
|
4
|
+
let esbuild = require("esbuild");
|
|
5
|
+
|
|
6
|
+
//#region ../powerlines/src/lib/utilities/bundle.ts
|
|
7
|
+
/**
|
|
8
|
+
* Bundle a type definition to a module.
|
|
9
|
+
*
|
|
10
|
+
* @param context - The context object containing the environment paths.
|
|
11
|
+
* @param file - The file path to bundle.
|
|
12
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
13
|
+
* @returns A promise that resolves to the bundled module.
|
|
14
|
+
*/
|
|
15
|
+
async function bundle(context, file, overrides = {}) {
|
|
16
|
+
const path = await context.fs.resolve(file);
|
|
17
|
+
if (!path || !context.fs.existsSync(path)) throw new Error(`Module not found: "${file}". Please check the path and try again.`);
|
|
18
|
+
const result = await (0, esbuild.build)({
|
|
19
|
+
...require_esbuild.extractESBuildConfig(context),
|
|
20
|
+
entryPoints: [path],
|
|
21
|
+
write: false,
|
|
22
|
+
sourcemap: false,
|
|
23
|
+
splitting: false,
|
|
24
|
+
treeShaking: false,
|
|
25
|
+
bundle: true,
|
|
26
|
+
...overrides
|
|
27
|
+
});
|
|
28
|
+
if (result.errors.length > 0) throw new Error(`Failed to transpile ${file}: ${result.errors.map((error) => error.text).join(", ")}`);
|
|
29
|
+
if (result.warnings.length > 0) context.log(__storm_software_config_tools_types.LogLevelLabel.WARN, `Warnings while transpiling ${file}: ${result.warnings.map((warning) => warning.text).join(", ")}`);
|
|
30
|
+
if (!result.outputFiles || result.outputFiles.filter(Boolean).length === 0) throw new Error(`No output files generated for ${file}. Please check the configuration and try again.`);
|
|
31
|
+
return result.outputFiles.filter(Boolean)[0];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//#endregion
|
|
35
|
+
exports.bundle = bundle;
|
|
@@ -1 +1,34 @@
|
|
|
1
|
-
import{extractESBuildConfig
|
|
1
|
+
import { extractESBuildConfig } from "../build/esbuild.mjs";
|
|
2
|
+
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
3
|
+
import { build } from "esbuild";
|
|
4
|
+
|
|
5
|
+
//#region ../powerlines/src/lib/utilities/bundle.ts
|
|
6
|
+
/**
|
|
7
|
+
* Bundle a type definition to a module.
|
|
8
|
+
*
|
|
9
|
+
* @param context - The context object containing the environment paths.
|
|
10
|
+
* @param file - The file path to bundle.
|
|
11
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
|
+
* @returns A promise that resolves to the bundled module.
|
|
13
|
+
*/
|
|
14
|
+
async function bundle(context, file, overrides = {}) {
|
|
15
|
+
const path = await context.fs.resolve(file);
|
|
16
|
+
if (!path || !context.fs.existsSync(path)) throw new Error(`Module not found: "${file}". Please check the path and try again.`);
|
|
17
|
+
const result = await build({
|
|
18
|
+
...extractESBuildConfig(context),
|
|
19
|
+
entryPoints: [path],
|
|
20
|
+
write: false,
|
|
21
|
+
sourcemap: false,
|
|
22
|
+
splitting: false,
|
|
23
|
+
treeShaking: false,
|
|
24
|
+
bundle: true,
|
|
25
|
+
...overrides
|
|
26
|
+
});
|
|
27
|
+
if (result.errors.length > 0) throw new Error(`Failed to transpile ${file}: ${result.errors.map((error) => error.text).join(", ")}`);
|
|
28
|
+
if (result.warnings.length > 0) context.log(LogLevelLabel.WARN, `Warnings while transpiling ${file}: ${result.warnings.map((warning) => warning.text).join(", ")}`);
|
|
29
|
+
if (!result.outputFiles || result.outputFiles.filter(Boolean).length === 0) throw new Error(`No output files generated for ${file}. Please check the configuration and try again.`);
|
|
30
|
+
return result.outputFiles.filter(Boolean)[0];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
//#endregion
|
|
34
|
+
export { bundle };
|
|
@@ -1 +1,30 @@
|
|
|
1
|
-
const
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
const require_bundle = require('./bundle.cjs');
|
|
3
|
+
let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
|
|
4
|
+
let __stryke_convert_parse_type_definition = require("@stryke/convert/parse-type-definition");
|
|
5
|
+
|
|
6
|
+
//#region ../powerlines/src/lib/utilities/resolve.ts
|
|
7
|
+
/**
|
|
8
|
+
* Compiles a type definition to a module.
|
|
9
|
+
*
|
|
10
|
+
* @param context - The context object containing the environment paths.
|
|
11
|
+
* @param type - The type definition to compile. This can be either a string or a {@link TypeDefinition} object.
|
|
12
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
13
|
+
* @returns A promise that resolves to the compiled module.
|
|
14
|
+
*/
|
|
15
|
+
async function resolve(context, type, overrides = {}) {
|
|
16
|
+
let typeDefinition;
|
|
17
|
+
if ((0, __stryke_type_checks_is_set_string.isSetString)(type)) typeDefinition = (0, __stryke_convert_parse_type_definition.parseTypeDefinition)(type);
|
|
18
|
+
else typeDefinition = type;
|
|
19
|
+
const result = await require_bundle.bundle(context, typeDefinition.file, overrides);
|
|
20
|
+
const resolved = await context.resolver.evalModule(result.text, {
|
|
21
|
+
filename: result.path,
|
|
22
|
+
forceTranspile: true
|
|
23
|
+
});
|
|
24
|
+
let exportName = typeDefinition.name;
|
|
25
|
+
if (!exportName) exportName = "default";
|
|
26
|
+
return resolved[exportName] ?? resolved[`__Ω${exportName}`];
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
exports.resolve = resolve;
|
|
@@ -1 +1,29 @@
|
|
|
1
|
-
import{bundle
|
|
1
|
+
import { bundle } from "./bundle.mjs";
|
|
2
|
+
import { isSetString } from "@stryke/type-checks/is-set-string";
|
|
3
|
+
import { parseTypeDefinition } from "@stryke/convert/parse-type-definition";
|
|
4
|
+
|
|
5
|
+
//#region ../powerlines/src/lib/utilities/resolve.ts
|
|
6
|
+
/**
|
|
7
|
+
* Compiles a type definition to a module.
|
|
8
|
+
*
|
|
9
|
+
* @param context - The context object containing the environment paths.
|
|
10
|
+
* @param type - The type definition to compile. This can be either a string or a {@link TypeDefinition} object.
|
|
11
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
|
+
* @returns A promise that resolves to the compiled module.
|
|
13
|
+
*/
|
|
14
|
+
async function resolve(context, type, overrides = {}) {
|
|
15
|
+
let typeDefinition;
|
|
16
|
+
if (isSetString(type)) typeDefinition = parseTypeDefinition(type);
|
|
17
|
+
else typeDefinition = type;
|
|
18
|
+
const result = await bundle(context, typeDefinition.file, overrides);
|
|
19
|
+
const resolved = await context.resolver.evalModule(result.text, {
|
|
20
|
+
filename: result.path,
|
|
21
|
+
forceTranspile: true
|
|
22
|
+
});
|
|
23
|
+
let exportName = typeDefinition.name;
|
|
24
|
+
if (!exportName) exportName = "default";
|
|
25
|
+
return resolved[exportName] ?? resolved[`__Ω${exportName}`];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
29
|
+
export { resolve };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
let
|
|
1
|
+
let __stryke_path_replace = require("@stryke/path/replace");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Context } from "./context.cjs";
|
|
2
1
|
import { LogFn } from "./config.cjs";
|
|
2
|
+
import { Context } from "./context.cjs";
|
|
3
3
|
import { PluginItem, PluginObj, PluginPass } from "@babel/core";
|
|
4
4
|
import { BabelAPI } from "@babel/helper-plugin-utils";
|
|
5
5
|
|
|
@@ -18,5 +18,6 @@ type BabelTransformPlugin<TContext extends Context = Context, TOptions extends R
|
|
|
18
18
|
$$name: string;
|
|
19
19
|
};
|
|
20
20
|
type BabelTransformPluginOptions<TContext extends Context = Context, TOptions extends Record<string, any> = Record<string, any>, TState = unknown> = PluginItem | BabelTransformPlugin<TContext, TOptions, TState> | [BabelTransformPlugin<TContext, TOptions, TState>, TOptions] | [BabelTransformPlugin<TContext, TOptions, TState>, TOptions, BabelTransformPluginFilter];
|
|
21
|
+
type DeclareBabelTransformPluginReturn<TContext extends Context = Context, TOptions extends Record<string, any> = Record<string, any>, TState = any> = Omit<BabelTransformPlugin<TContext, TOptions, TState>, "$$name"> & Required<Pick<BabelTransformPlugin<TContext, TOptions, TState>, "$$name">>;
|
|
21
22
|
//#endregion
|
|
22
|
-
export { BabelTransformPluginOptions };
|
|
23
|
+
export { BabelTransformPluginOptions, DeclareBabelTransformPluginReturn };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Context } from "./context.mjs";
|
|
2
1
|
import { LogFn } from "./config.mjs";
|
|
2
|
+
import { Context } from "./context.mjs";
|
|
3
3
|
import { PluginItem, PluginObj, PluginPass } from "@babel/core";
|
|
4
4
|
import { BabelAPI } from "@babel/helper-plugin-utils";
|
|
5
5
|
|
|
@@ -18,5 +18,6 @@ type BabelTransformPlugin<TContext extends Context = Context, TOptions extends R
|
|
|
18
18
|
$$name: string;
|
|
19
19
|
};
|
|
20
20
|
type BabelTransformPluginOptions<TContext extends Context = Context, TOptions extends Record<string, any> = Record<string, any>, TState = unknown> = PluginItem | BabelTransformPlugin<TContext, TOptions, TState> | [BabelTransformPlugin<TContext, TOptions, TState>, TOptions] | [BabelTransformPlugin<TContext, TOptions, TState>, TOptions, BabelTransformPluginFilter];
|
|
21
|
+
type DeclareBabelTransformPluginReturn<TContext extends Context = Context, TOptions extends Record<string, any> = Record<string, any>, TState = any> = Omit<BabelTransformPlugin<TContext, TOptions, TState>, "$$name"> & Required<Pick<BabelTransformPlugin<TContext, TOptions, TState>, "$$name">>;
|
|
21
22
|
//#endregion
|
|
22
|
-
export { BabelTransformPluginOptions };
|
|
23
|
+
export { BabelPluginPass, BabelTransformPlugin, BabelTransformPluginFilter, BabelTransformPluginOptions, DeclareBabelTransformPluginReturn };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MaybePromise } from "@stryke/types/base";
|
|
2
1
|
import { ArrayValues } from "@stryke/types/array";
|
|
2
|
+
import { MaybePromise } from "@stryke/types/base";
|
|
3
3
|
|
|
4
4
|
//#region ../powerlines/src/types/commands.d.ts
|
|
5
5
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./context.mjs";
|
|
2
|
-
import { MaybePromise } from "@stryke/types/base";
|
|
3
2
|
import { ArrayValues } from "@stryke/types/array";
|
|
3
|
+
import { MaybePromise } from "@stryke/types/base";
|
|
4
4
|
|
|
5
5
|
//#region ../powerlines/src/types/commands.d.ts
|
|
6
6
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
|
|
7
7
|
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
8
8
|
//#endregion
|
|
9
|
-
export { CommandType };
|
|
9
|
+
export { CommandType, SUPPORTED_COMMANDS };
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BabelTransformPluginOptions } from "./babel.cjs";
|
|
2
2
|
import { BuildConfig, BuildResolvedConfig } from "./build.cjs";
|
|
3
|
+
import { StoragePort, StoragePreset } from "./fs.cjs";
|
|
3
4
|
import { Plugin } from "./plugin.cjs";
|
|
4
5
|
import { TSConfig } from "./tsconfig.cjs";
|
|
5
6
|
import { PluginContext } from "./context.cjs";
|
|
6
|
-
import { BabelTransformPluginOptions } from "./babel.cjs";
|
|
7
7
|
import { MaybePromise } from "@stryke/types/base";
|
|
8
|
-
import { AssetGlob } from "@stryke/types/file";
|
|
9
|
-
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
10
|
-
import { PreviewOptions } from "vite";
|
|
11
8
|
import { transformAsync } from "@babel/core";
|
|
12
9
|
import { Format } from "@storm-software/build-tools/types";
|
|
13
10
|
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
14
11
|
import { StormWorkspaceConfig } from "@storm-software/config/types";
|
|
12
|
+
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
13
|
+
import { AssetGlob } from "@stryke/types/file";
|
|
15
14
|
import { DateString } from "compatx";
|
|
15
|
+
import { PreviewOptions } from "vite";
|
|
16
16
|
|
|
17
17
|
//#region ../powerlines/src/types/config.d.ts
|
|
18
18
|
type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BabelTransformPluginOptions } from "./babel.mjs";
|
|
2
2
|
import { BuildConfig, BuildResolvedConfig } from "./build.mjs";
|
|
3
|
+
import { StoragePort, StoragePreset } from "./fs.mjs";
|
|
3
4
|
import { Plugin } from "./plugin.mjs";
|
|
4
5
|
import { TSConfig } from "./tsconfig.mjs";
|
|
5
6
|
import { PluginContext } from "./context.mjs";
|
|
6
|
-
import { BabelTransformPluginOptions } from "./babel.mjs";
|
|
7
7
|
import "c12";
|
|
8
8
|
import { transformAsync } from "@babel/core";
|
|
9
9
|
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
10
10
|
import { MaybePromise } from "@stryke/types/base";
|
|
11
|
-
import { AssetGlob } from "@stryke/types/file";
|
|
12
|
-
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
13
|
-
import { PreviewOptions } from "vite";
|
|
14
11
|
import { Format } from "@storm-software/build-tools/types";
|
|
15
12
|
import { StormWorkspaceConfig } from "@storm-software/config/types";
|
|
13
|
+
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
14
|
+
import { AssetGlob } from "@stryke/types/file";
|
|
16
15
|
import { DateString } from "compatx";
|
|
16
|
+
import { PreviewOptions } from "vite";
|
|
17
17
|
|
|
18
18
|
//#region ../powerlines/src/types/config.d.ts
|
|
19
19
|
type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
@@ -378,4 +378,4 @@ type InlineConfig<TUserConfig extends UserConfig = UserConfig> = Partial<TUserCo
|
|
|
378
378
|
command: PowerlinesCommand;
|
|
379
379
|
};
|
|
380
380
|
//#endregion
|
|
381
|
-
export { BabelUserConfig, EnvironmentConfig, InlineConfig, LogFn, OutputConfig, PluginConfig, UserConfig, WorkspaceConfig };
|
|
381
|
+
export { BabelUserConfig, BaseConfig, CommonUserConfig, DeployConfig, EnvironmentConfig, InlineConfig, LogFn, OutputConfig, PluginConfig, PluginConfigObject, PluginConfigTuple, PluginFactory, PowerlinesCommand, ProjectType, UserConfig, WorkspaceConfig };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ResolveOptions, VirtualFile, VirtualFileSystemInterface, WriteOptions } from "./fs.cjs";
|
|
2
|
+
import { EnvironmentResolvedConfig, ResolvedConfig, ResolvedEntryTypeDefinition } from "./resolved.cjs";
|
|
2
3
|
import { ParsedTypeScriptConfig } from "./tsconfig.cjs";
|
|
3
4
|
import { InlineConfig, LogFn, UserConfig, WorkspaceConfig } from "./config.cjs";
|
|
4
|
-
import { EnvironmentResolvedConfig, ResolvedConfig, ResolvedEntryTypeDefinition } from "./resolved.cjs";
|
|
5
5
|
import { NonUndefined } from "@stryke/types/base";
|
|
6
6
|
import { EnvPaths } from "@stryke/env/get-env-paths";
|
|
7
7
|
import { FetchRequestOptions } from "@stryke/http/fetch";
|
|
@@ -89,10 +89,18 @@ interface ParseOptions extends ParserOptions {
|
|
|
89
89
|
*/
|
|
90
90
|
allowReturnOutsideFunction?: boolean;
|
|
91
91
|
}
|
|
92
|
+
interface EmitOptions extends WriteOptions {
|
|
93
|
+
/**
|
|
94
|
+
* If true, will emit the file using {@link UnpluginBuildContext.emitFile | the bundler's emit function}.
|
|
95
|
+
*/
|
|
96
|
+
emitWithBundler?: boolean;
|
|
97
|
+
needsCodeReference?: Parameters<UnpluginBuildContext["emitFile"]>[0]["needsCodeReference"];
|
|
98
|
+
originalFileName?: Parameters<UnpluginBuildContext["emitFile"]>[0]["originalFileName"];
|
|
99
|
+
}
|
|
92
100
|
/**
|
|
93
101
|
* Options for emitting entry virtual files
|
|
94
102
|
*/
|
|
95
|
-
type EmitEntryOptions =
|
|
103
|
+
type EmitEntryOptions = EmitOptions & Omit<ResolvedEntryTypeDefinition, "file">;
|
|
96
104
|
/**
|
|
97
105
|
* The unresolved Powerlines context.
|
|
98
106
|
*
|
|
@@ -303,6 +311,22 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
303
311
|
* The Powerlines builtin virtual files
|
|
304
312
|
*/
|
|
305
313
|
getBuiltins: () => Promise<VirtualFile[]>;
|
|
314
|
+
/**
|
|
315
|
+
* Resolves a file and writes it to the VFS if it does not already exist
|
|
316
|
+
*
|
|
317
|
+
* @param code - The source code of the file
|
|
318
|
+
* @param path - The path to write the file to
|
|
319
|
+
* @param options - Additional options for writing the file
|
|
320
|
+
*/
|
|
321
|
+
emit: (code: string, path: string, options?: EmitOptions) => Promise<void>;
|
|
322
|
+
/**
|
|
323
|
+
* Synchronously resolves a file and writes it to the VFS if it does not already exist
|
|
324
|
+
*
|
|
325
|
+
* @param code - The source code of the file
|
|
326
|
+
* @param path - The path to write the file to
|
|
327
|
+
* @param options - Additional options for writing the file
|
|
328
|
+
*/
|
|
329
|
+
emitSync: (code: string, path: string, options?: EmitOptions) => void;
|
|
306
330
|
/**
|
|
307
331
|
* Resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
308
332
|
*
|
|
@@ -311,7 +335,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
311
335
|
* @param path - An optional path to write the builtin file to
|
|
312
336
|
* @param options - Additional options for writing the builtin file
|
|
313
337
|
*/
|
|
314
|
-
emitBuiltin: (code: string, id: string, path?: string, options?:
|
|
338
|
+
emitBuiltin: (code: string, id: string, path?: string, options?: EmitOptions) => Promise<void>;
|
|
315
339
|
/**
|
|
316
340
|
* Synchronously resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
317
341
|
*
|
|
@@ -320,7 +344,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
320
344
|
* @param path - An optional path to write the builtin file to
|
|
321
345
|
* @param options - Additional options for writing the builtin file
|
|
322
346
|
*/
|
|
323
|
-
emitBuiltinSync: (code: string, id: string, path?: string, options?:
|
|
347
|
+
emitBuiltinSync: (code: string, id: string, path?: string, options?: EmitOptions) => void;
|
|
324
348
|
/**
|
|
325
349
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
326
350
|
*
|