@storm-software/workspace-tools 1.62.20 → 1.62.22
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/README.md +1 -1
- package/index.js +3 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +3 -2
- package/src/executors/tsup-browser/executor.js +3 -2
- package/src/executors/tsup-neutral/executor.js +3 -2
- package/src/executors/tsup-node/executor.js +3 -2
- package/src/utils/index.js +3 -2
package/package.json
CHANGED
|
@@ -453184,7 +453184,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
453184
453184
|
},
|
|
453185
453185
|
env: {
|
|
453186
453186
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
453187
|
-
...
|
|
453187
|
+
...process.env,
|
|
453188
|
+
...options8.env
|
|
453188
453189
|
},
|
|
453189
453190
|
dtsTsConfig: getNormalizedTsConfig(
|
|
453190
453191
|
workspaceRoot,
|
|
@@ -453249,7 +453250,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
453249
453250
|
outDir: outputPath,
|
|
453250
453251
|
noEmit: false,
|
|
453251
453252
|
esModuleInterop: true,
|
|
453252
|
-
|
|
453253
|
+
incremental: false,
|
|
453253
453254
|
noUnusedLocals: false,
|
|
453254
453255
|
emitDeclarationOnly: true,
|
|
453255
453256
|
declaration: true,
|
|
@@ -447000,7 +447000,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447003
|
+
...process.env,
|
|
447004
|
+
...options8.env
|
|
447004
447005
|
},
|
|
447005
447006
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447006
447007
|
workspaceRoot,
|
|
@@ -447065,7 +447066,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447066
|
outDir: outputPath,
|
|
447066
447067
|
noEmit: false,
|
|
447067
447068
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447069
|
+
incremental: false,
|
|
447069
447070
|
noUnusedLocals: false,
|
|
447070
447071
|
emitDeclarationOnly: true,
|
|
447071
447072
|
declaration: true,
|
|
@@ -447000,7 +447000,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447003
|
+
...process.env,
|
|
447004
|
+
...options8.env
|
|
447004
447005
|
},
|
|
447005
447006
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447006
447007
|
workspaceRoot,
|
|
@@ -447065,7 +447066,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447066
|
outDir: outputPath,
|
|
447066
447067
|
noEmit: false,
|
|
447067
447068
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447069
|
+
incremental: false,
|
|
447069
447070
|
noUnusedLocals: false,
|
|
447070
447071
|
emitDeclarationOnly: true,
|
|
447071
447072
|
declaration: true,
|
|
@@ -447000,7 +447000,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447003
|
+
...process.env,
|
|
447004
|
+
...options8.env
|
|
447004
447005
|
},
|
|
447005
447006
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447006
447007
|
workspaceRoot,
|
|
@@ -447065,7 +447066,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447066
|
outDir: outputPath,
|
|
447066
447067
|
noEmit: false,
|
|
447067
447068
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447069
|
+
incremental: false,
|
|
447069
447070
|
noUnusedLocals: false,
|
|
447070
447071
|
emitDeclarationOnly: true,
|
|
447071
447072
|
declaration: true,
|
package/src/utils/index.js
CHANGED
|
@@ -457266,7 +457266,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
457266
457266
|
},
|
|
457267
457267
|
env: {
|
|
457268
457268
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
457269
|
-
...
|
|
457269
|
+
...process.env,
|
|
457270
|
+
...options8.env
|
|
457270
457271
|
},
|
|
457271
457272
|
dtsTsConfig: getNormalizedTsConfig(
|
|
457272
457273
|
workspaceRoot,
|
|
@@ -457331,7 +457332,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
457331
457332
|
outDir: outputPath,
|
|
457332
457333
|
noEmit: false,
|
|
457333
457334
|
esModuleInterop: true,
|
|
457334
|
-
|
|
457335
|
+
incremental: false,
|
|
457335
457336
|
noUnusedLocals: false,
|
|
457336
457337
|
emitDeclarationOnly: true,
|
|
457337
457338
|
declaration: true,
|