@storm-software/workspace-tools 1.21.14 → 1.21.16
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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.21.15](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.14...workspace-tools-v1.21.15) (2023-12-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue with passing incorrect config keys to tsup ([d8cd0f9](https://github.com/storm-software/storm-ops/commit/d8cd0f9b51af42575d923190ff9c85672214e0af))
|
|
7
|
+
|
|
8
|
+
## [1.21.14](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.13...workspace-tools-v1.21.14) (2023-12-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Ensure correct env values are passed to tsup build ([da0ba21](https://github.com/storm-software/storm-ops/commit/da0ba21533641a729f284bdbcbf061f699b4cfc3))
|
|
14
|
+
|
|
1
15
|
## [1.21.13](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.12...workspace-tools-v1.21.13) (2023-12-03)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -116055,8 +116055,13 @@ ${(0, import_fs3.readFileSync)(file, "utf-8")}`,
|
|
|
116055
116055
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
116056
116056
|
const config = getConfig(context.root, projectRoot, sourceRoot, {
|
|
116057
116057
|
...options,
|
|
116058
|
-
define:
|
|
116059
|
-
|
|
116058
|
+
define: {
|
|
116059
|
+
__STORM_CONFIG: JSON.stringify(stormEnv)
|
|
116060
|
+
},
|
|
116061
|
+
env: {
|
|
116062
|
+
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
116063
|
+
...stormEnv
|
|
116064
|
+
},
|
|
116060
116065
|
dtsTsConfig: getNormalizedTsConfig(
|
|
116061
116066
|
context.root,
|
|
116062
116067
|
options.outputPath,
|