@storm-software/workspace-tools 1.49.15 → 1.49.16

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.16 (2024-01-25)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Ensure tsup build is awaited in executor ([b81872df](https://github.com/storm-software/storm-ops/commit/b81872df))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.49.15 (2024-01-24)
2
14
 
3
15
 
package/index.js CHANGED
@@ -139507,7 +139507,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
139507
139507
  )
139508
139508
  );
139509
139509
  }
139510
- Promise.all(
139510
+ await Promise.all(
139511
139511
  entryPoints.map((entryPoint) => {
139512
139512
  let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
139513
139513
  if (outputPath.startsWith(".")) {