@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.30.11](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.10...workspace-tools-v1.30.11) (2023-12-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added logging for troubleshooting entry points on build ([7f4d9c1](https://github.com/storm-software/storm-ops/commit/7f4d9c176aa171e0c7bb6f3b073bd233c366a3eb))
|
|
7
|
+
|
|
8
|
+
## [1.30.10](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.9...workspace-tools-v1.30.10) (2023-12-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Updated the code to define tsup config ([6d6889e](https://github.com/storm-software/storm-ops/commit/6d6889e81e493dbdb73386e10ea4583246886232))
|
|
14
|
+
|
|
1
15
|
## [1.30.9](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.8...workspace-tools-v1.30.9) (2023-12-15)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -117719,8 +117719,9 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
117719
117719
|
})
|
|
117720
117720
|
);
|
|
117721
117721
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
117722
|
-
|
|
117723
|
-
|
|
117722
|
+
console.log("\u26A1 Building with the following entry points: ", entry);
|
|
117723
|
+
const config = (0, import_tsup.defineConfig)(
|
|
117724
|
+
Object.keys(entry).reduce((ret, key) => {
|
|
117724
117725
|
const getConfigOptions = {
|
|
117725
117726
|
...options,
|
|
117726
117727
|
define: {
|
|
@@ -117759,7 +117760,7 @@ ${options.banner}
|
|
|
117759
117760
|
`
|
|
117760
117761
|
} : void 0,
|
|
117761
117762
|
outputPath: options.outputPath,
|
|
117762
|
-
entry: entry[key]
|
|
117763
|
+
entry: { [key]: entry[key] }
|
|
117763
117764
|
};
|
|
117764
117765
|
ret.push(
|
|
117765
117766
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|
|
@@ -117769,7 +117770,7 @@ ${options.banner}
|
|
|
117769
117770
|
);
|
|
117770
117771
|
return ret;
|
|
117771
117772
|
}, [])
|
|
117772
|
-
|
|
117773
|
+
);
|
|
117773
117774
|
if (typeof config === "function") {
|
|
117774
117775
|
await build(await Promise.resolve(config({})));
|
|
117775
117776
|
} else {
|