@storm-software/workspace-tools 1.49.29 → 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,27 @@
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
+
13
+ ## 1.49.30 (2024-01-26)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **workspace-tools:** Updates to ouput path for tsup build ([dede0192](https://github.com/storm-software/storm-ops/commit/dede0192))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.49.29 (2024-01-26)
2
26
 
3
27
 
package/index.js CHANGED
@@ -139538,19 +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
- outputPath = (0, import_devkit4.joinPathFragments)(
139549
- options.outputPath,
139550
- "dist",
139551
- outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
139552
- );
139553
- writeInfo(config, `*** Build output path: ${outputPath} ***`);
139541
+ writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
139554
139542
  return runTsupBuild(
139555
139543
  {
139556
139544
  main: entryPoint,
@@ -139559,11 +139547,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
139559
139547
  sourceRoot
139560
139548
  },
139561
139549
  config,
139562
- {
139563
- ...options,
139564
- outputPath,
139565
- getConfig: options.getConfig
139566
- }
139550
+ options
139567
139551
  );
139568
139552
  })
139569
139553
  );