@storm-software/workspace-tools 1.62.22 → 1.62.24
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/assets/cjs_shims.js +2 -3
- package/assets/esm_shims.js +2 -2
- package/index.js +7 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +4 -2
- package/src/executors/tsup-browser/executor.js +5 -3
- package/src/executors/tsup-neutral/executor.js +5 -3
- package/src/executors/tsup-node/executor.js +5 -3
- package/src/utils/index.js +4 -2
package/package.json
CHANGED
|
@@ -453184,8 +453184,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
453184
453184
|
},
|
|
453185
453185
|
env: {
|
|
453186
453186
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
453187
|
-
...
|
|
453188
|
-
|
|
453187
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
453188
|
+
ret[key2] = options8.env?.[key2];
|
|
453189
|
+
return ret;
|
|
453190
|
+
}, {})
|
|
453189
453191
|
},
|
|
453190
453192
|
dtsTsConfig: getNormalizedTsConfig(
|
|
453191
453193
|
workspaceRoot,
|
|
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447004
|
-
|
|
447003
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
447004
|
+
ret[key2] = options8.env?.[key2];
|
|
447005
|
+
return ret;
|
|
447006
|
+
}, {})
|
|
447005
447007
|
},
|
|
447006
447008
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447007
447009
|
workspaceRoot,
|
|
@@ -453711,7 +453713,7 @@ var browserConfig = ({
|
|
|
453711
453713
|
external,
|
|
453712
453714
|
banner = {},
|
|
453713
453715
|
platform = "browser",
|
|
453714
|
-
verbose =
|
|
453716
|
+
verbose = true,
|
|
453715
453717
|
metafile = true,
|
|
453716
453718
|
skipNativeModulesPlugin = false,
|
|
453717
453719
|
define: define2,
|
|
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447004
|
-
|
|
447003
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
447004
|
+
ret[key2] = options8.env?.[key2];
|
|
447005
|
+
return ret;
|
|
447006
|
+
}, {})
|
|
447005
447007
|
},
|
|
447006
447008
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447007
447009
|
workspaceRoot,
|
|
@@ -453711,7 +453713,7 @@ var neutralConfig = ({
|
|
|
453711
453713
|
external,
|
|
453712
453714
|
banner = {},
|
|
453713
453715
|
platform = "neutral",
|
|
453714
|
-
verbose =
|
|
453716
|
+
verbose = true,
|
|
453715
453717
|
metafile = true,
|
|
453716
453718
|
skipNativeModulesPlugin = false,
|
|
453717
453719
|
define: define2,
|
|
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
447000
447000
|
},
|
|
447001
447001
|
env: {
|
|
447002
447002
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
447003
|
-
...
|
|
447004
|
-
|
|
447003
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
447004
|
+
ret[key2] = options8.env?.[key2];
|
|
447005
|
+
return ret;
|
|
447006
|
+
}, {})
|
|
447005
447007
|
},
|
|
447006
447008
|
dtsTsConfig: getNormalizedTsConfig(
|
|
447007
447009
|
workspaceRoot,
|
|
@@ -453711,7 +453713,7 @@ function nodeConfig({
|
|
|
453711
453713
|
external,
|
|
453712
453714
|
banner = {},
|
|
453713
453715
|
platform = "node",
|
|
453714
|
-
verbose =
|
|
453716
|
+
verbose = true,
|
|
453715
453717
|
apiReport = true,
|
|
453716
453718
|
docModel = true,
|
|
453717
453719
|
tsdocMetadata = true,
|
package/src/utils/index.js
CHANGED
|
@@ -457266,8 +457266,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
457266
457266
|
},
|
|
457267
457267
|
env: {
|
|
457268
457268
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
457269
|
-
...
|
|
457270
|
-
|
|
457269
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
457270
|
+
ret[key2] = options8.env?.[key2];
|
|
457271
|
+
return ret;
|
|
457272
|
+
}, {})
|
|
457271
457273
|
},
|
|
457272
457274
|
dtsTsConfig: getNormalizedTsConfig(
|
|
457273
457275
|
workspaceRoot,
|