@storm-software/workspace-tools 1.49.16 → 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 +12 -0
- package/index.js +7 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +7 -5
- package/src/executors/tsup-browser/executor.js +7 -5
- package/src/executors/tsup-neutral/executor.js +7 -5
- package/src/executors/tsup-node/executor.js +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
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
|
+
|
|
1
13
|
## 1.49.16 (2024-01-25)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -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
|
})
|