@storm-software/workspace-tools 1.49.15 → 1.49.17
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 +24 -0
- package/index.js +8 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +8 -6
- package/src/executors/tsup-browser/executor.js +8 -6
- package/src/executors/tsup-neutral/executor.js +8 -6
- package/src/executors/tsup-node/executor.js +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.49.17 (2024-01-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Added `ouputPath` logging to the tsup build ([81355feb](https://github.com/storm-software/storm-ops/commit/81355feb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.49.16 (2024-01-25)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Ensure tsup build is awaited in executor ([b81872df](https://github.com/storm-software/storm-ops/commit/b81872df))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.49.15 (2024-01-24)
|
|
2
26
|
|
|
3
27
|
|
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(".")) {
|
|
@@ -139516,6 +139516,12 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139516
139516
|
if (outputPath.startsWith("/")) {
|
|
139517
139517
|
outputPath = outputPath.substring(1);
|
|
139518
139518
|
}
|
|
139519
|
+
outputPath = (0, import_devkit4.joinPathFragments)(
|
|
139520
|
+
options.outputPath,
|
|
139521
|
+
"dist",
|
|
139522
|
+
outputPath.replace(findFileName(entryPoint), "")
|
|
139523
|
+
);
|
|
139524
|
+
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
139519
139525
|
return runTsupBuild(
|
|
139520
139526
|
{
|
|
139521
139527
|
entry: entryPoint,
|
|
@@ -139526,11 +139532,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139526
139532
|
config,
|
|
139527
139533
|
{
|
|
139528
139534
|
...options,
|
|
139529
|
-
outputPath
|
|
139530
|
-
options.outputPath,
|
|
139531
|
-
"dist",
|
|
139532
|
-
outputPath.replace(findFileName(entryPoint), "")
|
|
139533
|
-
)
|
|
139535
|
+
outputPath
|
|
139534
139536
|
}
|
|
139535
139537
|
);
|
|
139536
139538
|
})
|