@storm-software/workspace-tools 1.30.10 → 1.30.12
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/CHANGELOG.md +14 -0
- package/index.js +5 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +5 -4
- package/src/executors/tsup-browser/executor.js +5 -4
- package/src/executors/tsup-neutral/executor.js +5 -4
- package/src/executors/tsup-node/executor.js +5 -4
package/package.json
CHANGED
|
@@ -117480,8 +117480,9 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
117480
117480
|
})
|
|
117481
117481
|
);
|
|
117482
117482
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
117483
|
-
|
|
117484
|
-
|
|
117483
|
+
console.log("\u26A1 Building with the following entry points: ", entry);
|
|
117484
|
+
const config = (0, import_tsup.defineConfig)(
|
|
117485
|
+
Object.keys(entry).reduce((ret, key) => {
|
|
117485
117486
|
const getConfigOptions = {
|
|
117486
117487
|
...options,
|
|
117487
117488
|
define: {
|
|
@@ -117520,7 +117521,7 @@ ${options.banner}
|
|
|
117520
117521
|
`
|
|
117521
117522
|
} : void 0,
|
|
117522
117523
|
outputPath: options.outputPath,
|
|
117523
|
-
entry: entry[key]
|
|
117524
|
+
entry: { [key]: entry[key] }
|
|
117524
117525
|
};
|
|
117525
117526
|
ret.push(
|
|
117526
117527
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|
|
@@ -117530,7 +117531,7 @@ ${options.banner}
|
|
|
117530
117531
|
);
|
|
117531
117532
|
return ret;
|
|
117532
117533
|
}, [])
|
|
117533
|
-
|
|
117534
|
+
);
|
|
117534
117535
|
if (typeof config === "function") {
|
|
117535
117536
|
await build(await Promise.resolve(config({})));
|
|
117536
117537
|
} else {
|
|
@@ -117511,8 +117511,9 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
117511
117511
|
})
|
|
117512
117512
|
);
|
|
117513
117513
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
117514
|
-
|
|
117515
|
-
|
|
117514
|
+
console.log("\u26A1 Building with the following entry points: ", entry);
|
|
117515
|
+
const config = (0, import_tsup.defineConfig)(
|
|
117516
|
+
Object.keys(entry).reduce((ret, key) => {
|
|
117516
117517
|
const getConfigOptions = {
|
|
117517
117518
|
...options,
|
|
117518
117519
|
define: {
|
|
@@ -117551,7 +117552,7 @@ ${options.banner}
|
|
|
117551
117552
|
`
|
|
117552
117553
|
} : void 0,
|
|
117553
117554
|
outputPath: options.outputPath,
|
|
117554
|
-
entry: entry[key]
|
|
117555
|
+
entry: { [key]: entry[key] }
|
|
117555
117556
|
};
|
|
117556
117557
|
ret.push(
|
|
117557
117558
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|
|
@@ -117561,7 +117562,7 @@ ${options.banner}
|
|
|
117561
117562
|
);
|
|
117562
117563
|
return ret;
|
|
117563
117564
|
}, [])
|
|
117564
|
-
|
|
117565
|
+
);
|
|
117565
117566
|
if (typeof config === "function") {
|
|
117566
117567
|
await build(await Promise.resolve(config({})));
|
|
117567
117568
|
} else {
|
|
@@ -117511,8 +117511,9 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
117511
117511
|
})
|
|
117512
117512
|
);
|
|
117513
117513
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
117514
|
-
|
|
117515
|
-
|
|
117514
|
+
console.log("\u26A1 Building with the following entry points: ", entry);
|
|
117515
|
+
const config = (0, import_tsup.defineConfig)(
|
|
117516
|
+
Object.keys(entry).reduce((ret, key) => {
|
|
117516
117517
|
const getConfigOptions = {
|
|
117517
117518
|
...options,
|
|
117518
117519
|
define: {
|
|
@@ -117551,7 +117552,7 @@ ${options.banner}
|
|
|
117551
117552
|
`
|
|
117552
117553
|
} : void 0,
|
|
117553
117554
|
outputPath: options.outputPath,
|
|
117554
|
-
entry: entry[key]
|
|
117555
|
+
entry: { [key]: entry[key] }
|
|
117555
117556
|
};
|
|
117556
117557
|
ret.push(
|
|
117557
117558
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|
|
@@ -117561,7 +117562,7 @@ ${options.banner}
|
|
|
117561
117562
|
);
|
|
117562
117563
|
return ret;
|
|
117563
117564
|
}, [])
|
|
117564
|
-
|
|
117565
|
+
);
|
|
117565
117566
|
if (typeof config === "function") {
|
|
117566
117567
|
await build(await Promise.resolve(config({})));
|
|
117567
117568
|
} else {
|
|
@@ -117511,8 +117511,9 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
117511
117511
|
})
|
|
117512
117512
|
);
|
|
117513
117513
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
117514
|
-
|
|
117515
|
-
|
|
117514
|
+
console.log("\u26A1 Building with the following entry points: ", entry);
|
|
117515
|
+
const config = (0, import_tsup.defineConfig)(
|
|
117516
|
+
Object.keys(entry).reduce((ret, key) => {
|
|
117516
117517
|
const getConfigOptions = {
|
|
117517
117518
|
...options,
|
|
117518
117519
|
define: {
|
|
@@ -117551,7 +117552,7 @@ ${options.banner}
|
|
|
117551
117552
|
`
|
|
117552
117553
|
} : void 0,
|
|
117553
117554
|
outputPath: options.outputPath,
|
|
117554
|
-
entry: entry[key]
|
|
117555
|
+
entry: { [key]: entry[key] }
|
|
117555
117556
|
};
|
|
117556
117557
|
ret.push(
|
|
117557
117558
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|
|
@@ -117561,7 +117562,7 @@ ${options.banner}
|
|
|
117561
117562
|
);
|
|
117562
117563
|
return ret;
|
|
117563
117564
|
}, [])
|
|
117564
|
-
|
|
117565
|
+
);
|
|
117565
117566
|
if (typeof config === "function") {
|
|
117566
117567
|
await build(await Promise.resolve(config({})));
|
|
117567
117568
|
} else {
|