@storm-software/workspace-tools 1.55.2 → 1.56.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 +24 -0
- package/index.js +2 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup-neutral/executor.js +2 -1
package/package.json
CHANGED
|
@@ -116133,7 +116133,8 @@ var tsupNeutralBuildExecutorFn = (options, context, config) => {
|
|
|
116133
116133
|
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s) => s.trim()).filter((s) => !!s).map((s) => s ? s.toUpperCase()[0] + s.toLowerCase().slice(1) : "").join(" ") : "TypeScript (Neutral Platform)"
|
|
116134
116134
|
),
|
|
116135
116135
|
define: {
|
|
116136
|
-
...options.define
|
|
116136
|
+
...options.define,
|
|
116137
|
+
process: `{ env: ${JSON.stringify(process.env)} }`
|
|
116137
116138
|
},
|
|
116138
116139
|
env: {
|
|
116139
116140
|
...process.env
|