@storm-software/workspace-tools 1.30.11 → 1.30.12
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-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.30.11](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.10...workspace-tools-v1.30.11) (2023-12-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added logging for troubleshooting entry points on build ([7f4d9c1](https://github.com/storm-software/storm-ops/commit/7f4d9c176aa171e0c7bb6f3b073bd233c366a3eb))
|
|
7
|
+
|
|
1
8
|
## [1.30.10](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.9...workspace-tools-v1.30.10) (2023-12-15)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -117760,7 +117760,7 @@ ${options.banner}
|
|
|
117760
117760
|
`
|
|
117761
117761
|
} : void 0,
|
|
117762
117762
|
outputPath: options.outputPath,
|
|
117763
|
-
entry: entry[key]
|
|
117763
|
+
entry: { [key]: entry[key] }
|
|
117764
117764
|
};
|
|
117765
117765
|
ret.push(
|
|
117766
117766
|
getConfig(context.root, projectRoot, legacyConfig, getConfigOptions)
|