@storm-software/workspace-tools 1.49.30 → 1.49.31

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,15 @@
1
+ ## 1.49.31 (2024-01-26)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Use the default `outputPath` for tsup build ([1078da89](https://github.com/storm-software/storm-ops/commit/1078da89))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.49.30 (2024-01-26)
2
14
 
3
15
 
package/index.js CHANGED
@@ -139538,14 +139538,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
139538
139538
  }
139539
139539
  await Promise.all(
139540
139540
  entryPoints.map((entryPoint) => {
139541
- let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
139542
- if (outputPath.startsWith(".")) {
139543
- outputPath = outputPath.substring(1);
139544
- }
139545
- if (outputPath.startsWith("/")) {
139546
- outputPath = outputPath.substring(1);
139547
- }
139548
- writeInfo(config, `*** Build output path: ${outputPath} ***`);
139541
+ writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
139549
139542
  return runTsupBuild(
139550
139543
  {
139551
139544
  main: entryPoint,
@@ -139554,11 +139547,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
139554
139547
  sourceRoot
139555
139548
  },
139556
139549
  config,
139557
- {
139558
- ...options,
139559
- outputPath,
139560
- getConfig: options.getConfig
139561
- }
139550
+ options
139562
139551
  );
139563
139552
  })
139564
139553
  );