@storm-software/workspace-tools 1.35.4 → 1.35.5
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 +7 -0
- package/index.js +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -1
- package/src/executors/tsup/get-config.js +1 -1
- package/src/executors/tsup-browser/executor.js +1 -1
- package/src/executors/tsup-neutral/executor.js +1 -1
- package/src/executors/tsup-node/executor.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.35.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.3...workspace-tools-v1.35.4) (2023-12-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **linting-tools:** Added tailwindcss prettier formatting to linting tools ([a8072f2](https://github.com/storm-software/storm-ops/commit/a8072f2f92a4cc9e93ef173574ff142cf23c13f7))
|
|
7
|
+
|
|
1
8
|
## [1.35.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.2...workspace-tools-v1.35.3) (2023-12-24)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -117048,7 +117048,7 @@ function legacyConfig({
|
|
|
117048
117048
|
name: "legacy",
|
|
117049
117049
|
entry,
|
|
117050
117050
|
format: platform !== "node" ? ["cjs", "esm", "iife"] : ["cjs", "esm"],
|
|
117051
|
-
target: ["es2022", "node18"],
|
|
117051
|
+
target: platform !== "node" ? ["es2022"] : ["es2022", "node18"],
|
|
117052
117052
|
tsconfig,
|
|
117053
117053
|
splitting,
|
|
117054
117054
|
generatePackageJson,
|