@storm-software/workspace-tools 1.30.10 → 1.30.11

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.30.10](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.9...workspace-tools-v1.30.10) (2023-12-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Updated the code to define tsup config ([6d6889e](https://github.com/storm-software/storm-ops/commit/6d6889e81e493dbdb73386e10ea4583246886232))
7
+
1
8
  ## [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
9
 
3
10
 
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
- const config = (0, import_tsup.defineConfig)([
117723
- ...Object.keys(entry).reduce((ret, key) => {
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: {
@@ -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 {