@storm-software/workspace-tools 1.36.0 → 1.36.1
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 +2 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -1
- package/src/executors/tsup-browser/executor.js +2 -1
- package/src/executors/tsup-neutral/executor.js +2 -1
- package/src/executors/tsup-node/executor.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.36.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.5...workspace-tools-v1.36.0) (2024-01-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added dynamic tsup build configuration ([c9932d9](https://github.com/storm-software/storm-ops/commit/c9932d9157ec23b4a460d52faf4988e1f748c84e))
|
|
7
|
+
|
|
1
8
|
## [1.35.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.4...workspace-tools-v1.35.5) (2024-01-01)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -117634,7 +117634,8 @@ ${externalDependencies.map((dep) => {
|
|
|
117634
117634
|
packageJson.dependencies[packageName] = "latest";
|
|
117635
117635
|
}
|
|
117636
117636
|
});
|
|
117637
|
-
|
|
117637
|
+
console.log(JSON.stringify(options.getConfig));
|
|
117638
|
+
const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
|
|
117638
117639
|
packageJson.type = "module";
|
|
117639
117640
|
if (distPaths.length > 1) {
|
|
117640
117641
|
packageJson.exports ??= {
|