@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/package.json
CHANGED
|
@@ -105639,11 +105639,9 @@ var tsNeutralBuildExecutorFn = (options, context, config) => {
|
|
|
105639
105639
|
).join(" ") : "TypeScript (Neutral Platform)"
|
|
105640
105640
|
),
|
|
105641
105641
|
define: {
|
|
105642
|
-
...options.define
|
|
105643
|
-
__STORM_CONFIG: config
|
|
105642
|
+
...options.define
|
|
105644
105643
|
},
|
|
105645
105644
|
env: {
|
|
105646
|
-
__STORM_CONFIG: config,
|
|
105647
105645
|
...process.env
|
|
105648
105646
|
}
|
|
105649
105647
|
},
|
|
@@ -105771,11 +105771,9 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
|
|
|
105771
105771
|
).join(" ") : "TypeScript (NodeJs Platform)"
|
|
105772
105772
|
),
|
|
105773
105773
|
define: {
|
|
105774
|
-
...options.define
|
|
105775
|
-
__STORM_CONFIG: config
|
|
105774
|
+
...options.define
|
|
105776
105775
|
},
|
|
105777
105776
|
env: {
|
|
105778
|
-
__STORM_CONFIG: config,
|
|
105779
105777
|
...process.env
|
|
105780
105778
|
}
|
|
105781
105779
|
},
|