@storm-software/workspace-tools 1.49.17 → 1.49.18
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 +14 -0
- package/index.js +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +17 -23
- package/src/executors/tsup-browser/executor.js +15 -21
- package/src/executors/tsup-neutral/executor.js +15 -21
- package/src/executors/tsup-node/executor.js +15 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.49.18 (2024-01-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolved issue with output path formatting ([5e9a3751](https://github.com/storm-software/storm-ops/commit/5e9a3751))
|
|
7
|
+
|
|
8
|
+
- **workspace-tools:** Resolved issue with unused parameter ([fcc51ad9](https://github.com/storm-software/storm-ops/commit/fcc51ad9))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Patrick Sullivan
|
|
14
|
+
|
|
1
15
|
## 1.49.17 (2024-01-25)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -139519,7 +139519,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139519
139519
|
outputPath = (0, import_devkit4.joinPathFragments)(
|
|
139520
139520
|
options.outputPath,
|
|
139521
139521
|
"dist",
|
|
139522
|
-
outputPath.
|
|
139522
|
+
outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
|
|
139523
139523
|
);
|
|
139524
139524
|
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
139525
139525
|
return runTsupBuild(
|