@powerlines/engine 0.46.4 → 0.46.5
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/_internal/worker.cjs +36 -25
- package/dist/_internal/worker.mjs +37 -26
- package/dist/_internal/worker.mjs.map +1 -1
- package/dist/api.cjs +1 -1
- package/dist/api.mjs +1 -1
- package/dist/{base-context-D7G_24-i.cjs → base-context-CbFlRUd-.cjs} +8 -6
- package/dist/{base-context-DU0NRHDt.mjs → base-context-Ce9PuQ9z.mjs} +9 -7
- package/dist/{base-context-DU0NRHDt.mjs.map → base-context-Ce9PuQ9z.mjs.map} +1 -1
- package/dist/context/index.cjs +3 -3
- package/dist/context/index.mjs +3 -3
- package/dist/{engine-context-BvDfqfY7.mjs → engine-context-CEbC9dHR.mjs} +2 -2
- package/dist/{engine-context-BvDfqfY7.mjs.map → engine-context-CEbC9dHR.mjs.map} +1 -1
- package/dist/{engine-context-BuJQY312.cjs → engine-context-D-rpz-J2.cjs} +1 -1
- package/dist/execution-context-CghMd-eP.d.cts.map +1 -1
- package/dist/{execution-context-Bb5pfsyN.mjs → execution-context-D-djno_x.mjs} +35 -25
- package/dist/execution-context-D-djno_x.mjs.map +1 -0
- package/dist/{execution-context-Dxa103Qg.cjs → execution-context-Lj_23Ps4.cjs} +29 -19
- package/dist/execution-context-rKd-zSZy.d.mts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/execution-context-Bb5pfsyN.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-C0xms8kb.cjs');
|
|
2
|
-
const require_base_context = require('./base-context-
|
|
2
|
+
const require_base_context = require('./base-context-CbFlRUd-.cjs');
|
|
3
3
|
const require_fs = require('./fs-XogSgMqT.cjs');
|
|
4
4
|
const require_virtual = require('./virtual-Ct3ZqPeN.cjs');
|
|
5
5
|
const require_tsconfig = require('./tsconfig-BUDqmOaT.cjs');
|
|
@@ -23,6 +23,7 @@ let chalk = require("chalk");
|
|
|
23
23
|
chalk = require_chunk.__toESM(chalk, 1);
|
|
24
24
|
let defu = require("defu");
|
|
25
25
|
defu = require_chunk.__toESM(defu, 1);
|
|
26
|
+
let node_fs = require("node:fs");
|
|
26
27
|
let _stryke_path_join_paths = require("@stryke/path/join-paths");
|
|
27
28
|
let _powerlines_core_lib_utilities_format = require("@powerlines/core/lib/utilities/format");
|
|
28
29
|
let _stryke_fs_exists = require("@stryke/fs/exists");
|
|
@@ -41,6 +42,8 @@ let _stryke_hash = require("@stryke/hash");
|
|
|
41
42
|
let _stryke_hash_node = require("@stryke/hash/node");
|
|
42
43
|
let _stryke_http_fetch = require("@stryke/http/fetch");
|
|
43
44
|
let _stryke_path_is_equal = require("@stryke/path/is-equal");
|
|
45
|
+
let _stryke_type_checks_is_regexp = require("@stryke/type-checks/is-regexp");
|
|
46
|
+
let _stryke_type_checks_is_undefined = require("@stryke/type-checks/is-undefined");
|
|
44
47
|
let bundle_require = require("bundle-require");
|
|
45
48
|
let compatx = require("compatx");
|
|
46
49
|
let flat_cache = require("flat-cache");
|
|
@@ -55,7 +58,6 @@ let _stryke_path_glob_to_regex = require("@stryke/path/glob-to-regex");
|
|
|
55
58
|
let _stryke_path_is_type = require("@stryke/path/is-type");
|
|
56
59
|
let _stryke_path_slash = require("@stryke/path/slash");
|
|
57
60
|
let _stryke_string_format_pretty_bytes = require("@stryke/string-format/pretty-bytes");
|
|
58
|
-
let _stryke_type_checks_is_regexp = require("@stryke/type-checks/is-regexp");
|
|
59
61
|
let node_buffer = require("node:buffer");
|
|
60
62
|
let node_url = require("node:url");
|
|
61
63
|
let _stryke_helpers_get_field = require("@stryke/helpers/get-field");
|
|
@@ -2037,7 +2039,7 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2037
2039
|
const mergedConfig = this.mergeConfig();
|
|
2038
2040
|
this.logger.trace({
|
|
2039
2041
|
meta: { category: "config" },
|
|
2040
|
-
message: `Pre-setup Powerlines configuration object: \n --- Merged Config --- \n
|
|
2042
|
+
message: `Pre-setup Powerlines configuration object: \n --- Merged Config --- \n${this.logConfig(mergedConfig)} \n\n --- Initial Options --- \n${this.logConfig(this.initialOptions)} \n\n --- Initial Config --- \n${this.logConfig(this.initialConfig)} \n\n --- User Config --- \n${this.logConfig(this.userConfig)} \n\n --- Inline Config --- \n${this.logConfig(this.inlineConfig)} \n\n --- Plugin Config --- \n${this.logConfig(this.pluginConfig)} \n\n --- Environment Config --- \n${this.logConfig(this.environmentConfig)} \n\n --- Overridden Config --- \n${this.logConfig(this.overriddenConfig)}`
|
|
2041
2043
|
});
|
|
2042
2044
|
mergedConfig.output = (0, defu.default)(mergedConfig.output ?? {}, {
|
|
2043
2045
|
copy: { assets: [
|
|
@@ -2053,14 +2055,17 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2053
2055
|
] },
|
|
2054
2056
|
dts: true
|
|
2055
2057
|
});
|
|
2056
|
-
if (
|
|
2057
|
-
if (
|
|
2058
|
-
if (
|
|
2059
|
-
if (!mergedConfig.platform) mergedConfig.platform = "neutral";
|
|
2058
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.mode)) mergedConfig.mode = await this.getDefaultMode();
|
|
2059
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.framework)) mergedConfig.framework = "powerlines";
|
|
2060
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.platform)) mergedConfig.platform = "neutral";
|
|
2060
2061
|
mergedConfig.compatibilityDate = (0, compatx.resolveCompatibilityDates)(mergedConfig.compatibilityDate, "latest");
|
|
2062
|
+
if (!this.packageJson && (0, node_fs.existsSync)((0, _stryke_path_join.joinPaths)((0, _stryke_path_append.appendPath)(mergedConfig.root, mergedConfig.cwd), "package.json")) || !this.projectJson && (0, node_fs.existsSync)((0, _stryke_path_join.joinPaths)((0, _stryke_path_append.appendPath)(mergedConfig.root, mergedConfig.cwd), "project.json"))) {
|
|
2063
|
+
await this.resolvePackageConfigs(mergedConfig.cwd, mergedConfig.root);
|
|
2064
|
+
if (this.packageJson) mergedConfig.organization ??= (0, _powerlines_core_plugin_utils.getPackageJsonOrganization)(this.packageJson) || "powerlines";
|
|
2065
|
+
}
|
|
2066
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.projectType)) mergedConfig.projectType = this.projectJson?.projectType || "application";
|
|
2061
2067
|
this.resolvedConfig = mergedConfig;
|
|
2062
2068
|
this.#configProxy = this.createConfigProxy();
|
|
2063
|
-
if (!this.packageJson) await this.resolvePackageConfigs();
|
|
2064
2069
|
mergedConfig.input = (0, _powerlines_core_lib_entry.getUniqueInputs)(mergedConfig.input);
|
|
2065
2070
|
if (mergedConfig.name?.startsWith("@") && mergedConfig.name.split("/").filter(Boolean).length > 1) mergedConfig.name = mergedConfig.name.split("/").filter(Boolean)[1];
|
|
2066
2071
|
mergedConfig.title ??= (0, _stryke_string_format_title_case.titleCase)(mergedConfig.name);
|
|
@@ -2071,18 +2076,18 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2071
2076
|
ret.push(plugin);
|
|
2072
2077
|
return ret;
|
|
2073
2078
|
}, []);
|
|
2074
|
-
if (
|
|
2079
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.logLevel)) if (mergedConfig.mode === "development") mergedConfig.logLevel = _powerlines_core_constants.DEFAULT_DEVELOPMENT_LOG_LEVEL;
|
|
2075
2080
|
else if (mergedConfig.mode === "test") mergedConfig.logLevel = _powerlines_core_constants.DEFAULT_TEST_LOG_LEVEL;
|
|
2076
2081
|
else mergedConfig.logLevel = _powerlines_core_constants.DEFAULT_PRODUCTION_LOG_LEVEL;
|
|
2077
2082
|
mergedConfig.logLevel = (0, _powerlines_core_plugin_utils.resolveLogLevel)(mergedConfig.logLevel);
|
|
2078
|
-
if (mergedConfig.tsconfig) mergedConfig.tsconfig = (0, _stryke_path_replace.replacePath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.tsconfig), mergedConfig.cwd);
|
|
2083
|
+
if ((0, _stryke_type_checks_is_set_string.isSetString)(mergedConfig.tsconfig)) mergedConfig.tsconfig = (0, _stryke_path_replace.replacePath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.tsconfig), mergedConfig.cwd);
|
|
2079
2084
|
else mergedConfig.tsconfig = require_tsconfig.getTsconfigFilePath(mergedConfig.cwd, mergedConfig.root);
|
|
2080
2085
|
mergedConfig.output.format = (0, _stryke_helpers_get_unique.getUnique)((0, _stryke_convert_to_array.toArray)(mergedConfig.output?.format ?? (mergedConfig.projectType === "library" ? ["cjs", "esm"] : ["esm"])));
|
|
2081
|
-
if (mergedConfig.output.path) mergedConfig.output.path = (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.path), mergedConfig.cwd);
|
|
2086
|
+
if ((0, _stryke_type_checks_is_set_string.isSetString)(mergedConfig.output.path)) mergedConfig.output.path = (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.path), mergedConfig.cwd);
|
|
2082
2087
|
else mergedConfig.output.path = (0, _stryke_path_append.appendPath)((0, _stryke_path_join.joinPaths)(mergedConfig.root, "dist"), mergedConfig.cwd);
|
|
2083
2088
|
mergedConfig.output.copy ??= {};
|
|
2084
|
-
if (mergedConfig.output.copy !== false) if (!mergedConfig.root.replace(/^\.\/?/, "")) mergedConfig.output.copy.path = mergedConfig.output.copy.path ? (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.copy.path), mergedConfig.cwd) : mergedConfig.output.path;
|
|
2085
|
-
else mergedConfig.output.copy.path = (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.copy.path
|
|
2089
|
+
if (mergedConfig.output.copy !== false) if (!mergedConfig.root.replace(/^\.\/?/, "")) mergedConfig.output.copy.path = (0, _stryke_type_checks_is_set_string.isSetString)(mergedConfig.output.copy.path) ? (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.copy.path), mergedConfig.cwd) : mergedConfig.output.path;
|
|
2090
|
+
else mergedConfig.output.copy.path = (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, (0, _stryke_type_checks_is_set_string.isSetString)(mergedConfig.output.copy.path) ? mergedConfig.output.copy.path : (0, _stryke_path_join.joinPaths)("dist", mergedConfig.root)), mergedConfig.cwd);
|
|
2086
2091
|
if (mergedConfig.output.types !== false) mergedConfig.output.types = (0, _stryke_path_append.appendPath)((0, _powerlines_core_plugin_utils.replacePathTokens)(this, mergedConfig.output.types || (0, _stryke_path_join.joinPaths)(mergedConfig.root, `${mergedConfig.framework ?? "powerlines"}.d.ts`)), mergedConfig.cwd);
|
|
2087
2092
|
if (mergedConfig.output.copy && mergedConfig.output.copy.path && mergedConfig.output.copy.assets && Array.isArray(mergedConfig.output.copy.assets)) mergedConfig.output.copy.assets = (0, _stryke_helpers_get_unique.getUniqueBy)(mergedConfig.output.copy.assets.map((asset) => {
|
|
2088
2093
|
return {
|
|
@@ -2092,11 +2097,11 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2092
2097
|
ignore: (0, _stryke_type_checks_is_set_object.isSetObject)(asset) && asset.ignore ? (0, _stryke_convert_to_array.toArray)(asset.ignore) : void 0
|
|
2093
2098
|
};
|
|
2094
2099
|
}), (a) => `${a.input}-${a.glob}-${a.output}`);
|
|
2095
|
-
if (
|
|
2100
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.output?.sourceMap)) if (mergedConfig.mode === "development") mergedConfig.output.sourceMap = true;
|
|
2096
2101
|
else mergedConfig.output.sourceMap = false;
|
|
2097
|
-
if (
|
|
2102
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.output?.minify)) if (mergedConfig.mode === "production") mergedConfig.output.minify = true;
|
|
2098
2103
|
else mergedConfig.output.minify = false;
|
|
2099
|
-
if (
|
|
2104
|
+
if ((0, _stryke_type_checks_is_undefined.isUndefined)(mergedConfig.output?.artifactsPath)) mergedConfig.output.artifactsPath = `.${mergedConfig.framework || "powerlines"}`;
|
|
2100
2105
|
if (mergedConfig.output.copy && mergedConfig.output.copy.assets) mergedConfig.output.copy.assets = mergedConfig.output.copy.assets.map((asset) => ({
|
|
2101
2106
|
...asset,
|
|
2102
2107
|
glob: (0, _powerlines_core_plugin_utils.replacePathTokens)(this, asset.glob),
|
|
@@ -2107,14 +2112,14 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2107
2112
|
if ((0, _stryke_type_checks_is_set_string.isSetString)(mergedConfig.output?.storage) && mergedConfig.output.storage === "virtual" || (0, _stryke_type_checks_is_set_object.isSetObject)(mergedConfig.output?.storage) && Object.values(mergedConfig.output.storage).every((adapter) => adapter.preset === "virtual")) mergedConfig.output.overwrite = true;
|
|
2108
2113
|
this.resolvedConfig = mergedConfig;
|
|
2109
2114
|
this.#configProxy = this.createConfigProxy();
|
|
2110
|
-
this.logger.
|
|
2115
|
+
this.logger.info({
|
|
2111
2116
|
meta: { category: "config" },
|
|
2112
2117
|
message: `Resolved Powerlines configuration object: \n${this.logConfig(this.resolvedConfig)}`
|
|
2113
2118
|
});
|
|
2114
2119
|
this.#fs ??= await VirtualFileSystem.create(this);
|
|
2115
2120
|
}
|
|
2116
2121
|
logConfig(config) {
|
|
2117
|
-
return JSON.stringify({
|
|
2122
|
+
return JSON.stringify(Object.fromEntries(Object.entries({
|
|
2118
2123
|
...(0, _stryke_helpers_omit.omit)(config, [
|
|
2119
2124
|
"plugins",
|
|
2120
2125
|
"initialConfig",
|
|
@@ -2123,8 +2128,13 @@ var PowerlinesContext = class PowerlinesContext extends require_base_context.Pow
|
|
|
2123
2128
|
"pluginConfig",
|
|
2124
2129
|
"environmentConfig"
|
|
2125
2130
|
]),
|
|
2131
|
+
resolve: {
|
|
2132
|
+
...config.resolve,
|
|
2133
|
+
external: (config.resolve?.external ?? []).filter(Boolean).map((external) => (0, _stryke_type_checks_is_set_string.isSetString)(external) ? external : (0, _stryke_type_checks_is_regexp.isRegExp)(external) ? external.source : "<unknown-external>"),
|
|
2134
|
+
noExternal: (config.resolve?.noExternal ?? []).filter(Boolean).map((noExternal) => (0, _stryke_type_checks_is_set_string.isSetString)(noExternal) ? noExternal : (0, _stryke_type_checks_is_regexp.isRegExp)(noExternal) ? noExternal.source : "<unknown-no-external>")
|
|
2135
|
+
},
|
|
2126
2136
|
plugins: config.plugins ? config.plugins.flatMap((plugin) => (0, _stryke_convert_to_array.toArray)(plugin)).map((plugin) => String((0, _stryke_type_checks_is_set_string.isSetString)(plugin) ? plugin : (0, _stryke_type_checks_is_set_object.isSetObject)(plugin) && (0, _stryke_type_checks_is_set_string.isSetString)(plugin.name) ? plugin.name : Array.isArray(plugin) && (0, _stryke_type_checks_is_set_string.isSetString)(plugin[0]) ? plugin[0] : "<function-plugin>")) : []
|
|
2127
|
-
}, null,
|
|
2137
|
+
}).sort(([key1], [key2]) => key1.localeCompare(key2))), null, 4).replace(/"([^"]+)":/g, "$1:").replace(/,$/g, "");
|
|
2128
2138
|
}
|
|
2129
2139
|
createConfigProxy() {
|
|
2130
2140
|
return new Proxy(this.resolvedConfig, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution-context-rKd-zSZy.d.mts","names":[],"sources":["../src/context/base-context.ts","../src/context/context.ts","../src/context/execution-context.ts"],"mappings":";;;;;;;;;;;cA6Da,qBAAA,YAAiC,WAAA;EAAA;;;;EAMrC,cAAA;;AANT;;EAWS,QAAA,EAAW,QAAA;EAAA;;;EAKX,OAAA,EAAU,YAAA,CACf,aAAA;EAYkB;;;EALb,WAAA,EAAc,WAAA;EAiCE;;;EA5BhB,WAAA,EAAa,MAAA;EAoEU;;;EA/DvB,UAAA,EAAa,gBAAA;EA4HgC;;;EAAA,IAvHzC,MAAA,CAAA,GAAU,MAAA;EA4IK;;;EAAA,IArIf,SAAA,CAAA;EAAA,IAIA,QAAA,CAAA,GAAY,sBAAA;EAgJN;;;EAAA,IAzIN,QAAA,CAAA,GAAY,QAAA;EAmRW;;;;;EAtQ3B,KAAA,CAAM,OAAA,WAAkB,UAAA;EAtEwB;;;;;EA+EhD,KAAA,CAAM,OAAA,WAAkB,UAAA;EApEb;;;;;EA6EX,IAAA,CAAK,OAAA,WAAkB,UAAA;EA3DvB;;;;;EAoEA,IAAA,CAAK,OAAA,WAAkB,UAAA;EAnDnB;;;;;EA4DJ,KAAA,CAAM,OAAA,WAAkB,UAAA;EApCA;;;;;EA6CxB,KAAA,CAAM,OAAA,WAAkB,UAAA;EA3BD;;;;;;;;;;;;;EA4CvB,KAAA,CAAM,IAAA;EA0BgB;;;;;;;EAAtB,YAAA,CAAa,OAAA,EAAS,aAAA,EAAe,KAAA,GAAQ,KAAA,GAAQ,MAAA;EAcf;;;;;;EAAtC,YAAA,CAAa,OAAA,EAAS,aAAA,GAAgB,MAAA;EAqBlC;;;EAAA,UAdD,cAAA,EAAgB,aAAA;EAexB;;;EAAA,UAVQ,aAAA,EAAe,WAAA,CAAY,UAAA;EA6CrB;;;;;;EAAA,UArCP,WAAA,CACP,OAAA,EAAS,aAAA,EACT,aAAA,GAAe,WAAA,CAAY,UAAA;
|
|
1
|
+
{"version":3,"file":"execution-context-rKd-zSZy.d.mts","names":[],"sources":["../src/context/base-context.ts","../src/context/context.ts","../src/context/execution-context.ts"],"mappings":"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"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
2
|
const require_chunk = require('./chunk-C0xms8kb.cjs');
|
|
3
|
-
const require_engine_context = require('./engine-context-
|
|
3
|
+
const require_engine_context = require('./engine-context-D-rpz-J2.cjs');
|
|
4
4
|
let _powerlines_core_constants = require("@powerlines/core/constants");
|
|
5
5
|
let _stryke_convert_to_array = require("@stryke/convert/to-array");
|
|
6
6
|
let _stryke_fs_resolve = require("@stryke/fs/resolve");
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as PowerlinesEngineContext } from "./engine-context-
|
|
1
|
+
import { t as PowerlinesEngineContext } from "./engine-context-CEbC9dHR.mjs";
|
|
2
2
|
import { POWERLINES_API_FUNCTIONS } from "@powerlines/core/constants";
|
|
3
3
|
import { toArray } from "@stryke/convert/to-array";
|
|
4
4
|
import { resolvePackage } from "@stryke/fs/resolve";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/engine",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An internal package containing the core engine modules for Powerlines.",
|
|
6
6
|
"homepage": "https://stormsoftware.com",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"@cacheable/memory": "^2.0.8",
|
|
138
138
|
"@donedeal0/superdiff": "^3.2.0",
|
|
139
139
|
"@jridgewell/sourcemap-codec": "^1.5.5",
|
|
140
|
-
"@powerlines/core": "^0.46.
|
|
140
|
+
"@powerlines/core": "^0.46.5",
|
|
141
141
|
"@storm-software/config": "^1.137.34",
|
|
142
142
|
"@storm-software/config-tools": "^1.190.1",
|
|
143
143
|
"@stryke/async": "^0.1.1",
|
|
@@ -180,5 +180,5 @@
|
|
|
180
180
|
"typescript": "^6.0.3",
|
|
181
181
|
"undici-types": "^7.25.0"
|
|
182
182
|
},
|
|
183
|
-
"gitHead": "
|
|
183
|
+
"gitHead": "9af888c54e58a82744cc334a6b80da52429fa0ac"
|
|
184
184
|
}
|