@storm-software/workspace-tools 1.21.4 → 1.21.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 +2 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup-neutral/executor.js +1 -3
- package/src/executors/tsup-neutral/schema.json +1 -0
- package/src/executors/tsup-node/executor.js +1 -3
- package/src/executors/tsup-node/schema.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.21.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.3...workspace-tools-v1.21.4) (2023-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config-tools:** Add `outExtension` to esbuild options ([57059ea](https://github.com/storm-software/storm-ops/commit/57059ead4b579cb4280b70e0ec32a33b83c40bcc))
|
|
7
|
+
|
|
1
8
|
## [1.21.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.2...workspace-tools-v1.21.3) (2023-12-02)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -105750,11 +105750,9 @@ var tsNeutralBuildExecutorFn = (options, context, config) => {
|
|
|
105750
105750
|
).join(" ") : "TypeScript (Neutral Platform)"
|
|
105751
105751
|
),
|
|
105752
105752
|
define: {
|
|
105753
|
-
...options.define
|
|
105754
|
-
__STORM_CONFIG: config
|
|
105753
|
+
...options.define
|
|
105755
105754
|
},
|
|
105756
105755
|
env: {
|
|
105757
|
-
__STORM_CONFIG: config,
|
|
105758
105756
|
...process.env
|
|
105759
105757
|
}
|
|
105760
105758
|
},
|
|
@@ -105920,11 +105918,9 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
|
|
|
105920
105918
|
).join(" ") : "TypeScript (NodeJs Platform)"
|
|
105921
105919
|
),
|
|
105922
105920
|
define: {
|
|
105923
|
-
...options.define
|
|
105924
|
-
__STORM_CONFIG: config
|
|
105921
|
+
...options.define
|
|
105925
105922
|
},
|
|
105926
105923
|
env: {
|
|
105927
|
-
__STORM_CONFIG: config,
|
|
105928
105924
|
...process.env
|
|
105929
105925
|
}
|
|
105930
105926
|
},
|