@storm-software/workspace-tools 1.62.19 → 1.62.21
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 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +1 -1
- package/src/executors/tsup/executor.js +3 -3
- package/src/executors/tsup-browser/executor.js +3 -3
- package/src/executors/tsup-neutral/executor.js +3 -3
- package/src/executors/tsup-node/executor.js +3 -3
- package/src/executors/typia/executor.js +1 -1
- package/src/utils/index.js +2 -2
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -391368,7 +391368,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
391368
391368
|
writeTrace(
|
|
391369
391369
|
config,
|
|
391370
391370
|
`Loaded Storm config into env:
|
|
391371
|
-
${Object.keys(process.env).
|
|
391371
|
+
${Object.keys(process.env).map(
|
|
391372
391372
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
391373
391373
|
).join("\n")}`
|
|
391374
391374
|
);
|
|
@@ -452836,7 +452836,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
452836
452836
|
writeTrace(
|
|
452837
452837
|
config,
|
|
452838
452838
|
`Loaded Storm config into env:
|
|
452839
|
-
${Object.keys(process.env).
|
|
452839
|
+
${Object.keys(process.env).map(
|
|
452840
452840
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
452841
452841
|
).join("\n")}`
|
|
452842
452842
|
);
|
|
@@ -453161,7 +453161,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
453161
453161
|
var runTsupBuild = async (context, config, options8) => {
|
|
453162
453162
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
453163
453163
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
453164
|
-
const stormEnv = Object.keys(options8.env ?? {}).
|
|
453164
|
+
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
453165
453165
|
ret[key2] = options8.env?.[key2];
|
|
453166
453166
|
return ret;
|
|
453167
453167
|
}, {});
|
|
@@ -453249,7 +453249,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
453249
453249
|
outDir: outputPath,
|
|
453250
453250
|
noEmit: false,
|
|
453251
453251
|
esModuleInterop: true,
|
|
453252
|
-
|
|
453252
|
+
incremental: false,
|
|
453253
453253
|
noUnusedLocals: false,
|
|
453254
453254
|
emitDeclarationOnly: true,
|
|
453255
453255
|
declaration: true,
|
|
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
446655
446655
|
writeTrace(
|
|
446656
446656
|
config,
|
|
446657
446657
|
`Loaded Storm config into env:
|
|
446658
|
-
${Object.keys(process.env).
|
|
446658
|
+
${Object.keys(process.env).map(
|
|
446659
446659
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
446660
446660
|
).join("\n")}`
|
|
446661
446661
|
);
|
|
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446977
446977
|
var runTsupBuild = async (context, config, options8) => {
|
|
446978
446978
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446979
446979
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
446980
|
-
const stormEnv = Object.keys(options8.env ?? {}).
|
|
446980
|
+
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
446981
446981
|
ret[key2] = options8.env?.[key2];
|
|
446982
446982
|
return ret;
|
|
446983
446983
|
}, {});
|
|
@@ -447065,7 +447065,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447065
|
outDir: outputPath,
|
|
447066
447066
|
noEmit: false,
|
|
447067
447067
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447068
|
+
incremental: false,
|
|
447069
447069
|
noUnusedLocals: false,
|
|
447070
447070
|
emitDeclarationOnly: true,
|
|
447071
447071
|
declaration: true,
|
|
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
446655
446655
|
writeTrace(
|
|
446656
446656
|
config,
|
|
446657
446657
|
`Loaded Storm config into env:
|
|
446658
|
-
${Object.keys(process.env).
|
|
446658
|
+
${Object.keys(process.env).map(
|
|
446659
446659
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
446660
446660
|
).join("\n")}`
|
|
446661
446661
|
);
|
|
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446977
446977
|
var runTsupBuild = async (context, config, options8) => {
|
|
446978
446978
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446979
446979
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
446980
|
-
const stormEnv = Object.keys(options8.env ?? {}).
|
|
446980
|
+
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
446981
446981
|
ret[key2] = options8.env?.[key2];
|
|
446982
446982
|
return ret;
|
|
446983
446983
|
}, {});
|
|
@@ -447065,7 +447065,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447065
|
outDir: outputPath,
|
|
447066
447066
|
noEmit: false,
|
|
447067
447067
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447068
|
+
incremental: false,
|
|
447069
447069
|
noUnusedLocals: false,
|
|
447070
447070
|
emitDeclarationOnly: true,
|
|
447071
447071
|
declaration: true,
|
|
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
446655
446655
|
writeTrace(
|
|
446656
446656
|
config,
|
|
446657
446657
|
`Loaded Storm config into env:
|
|
446658
|
-
${Object.keys(process.env).
|
|
446658
|
+
${Object.keys(process.env).map(
|
|
446659
446659
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
446660
446660
|
).join("\n")}`
|
|
446661
446661
|
);
|
|
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446977
446977
|
var runTsupBuild = async (context, config, options8) => {
|
|
446978
446978
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446979
446979
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
446980
|
-
const stormEnv = Object.keys(options8.env ?? {}).
|
|
446980
|
+
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
446981
446981
|
ret[key2] = options8.env?.[key2];
|
|
446982
446982
|
return ret;
|
|
446983
446983
|
}, {});
|
|
@@ -447065,7 +447065,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447065
447065
|
outDir: outputPath,
|
|
447066
447066
|
noEmit: false,
|
|
447067
447067
|
esModuleInterop: true,
|
|
447068
|
-
|
|
447068
|
+
incremental: false,
|
|
447069
447069
|
noUnusedLocals: false,
|
|
447070
447070
|
emitDeclarationOnly: true,
|
|
447071
447071
|
declaration: true,
|
|
@@ -227889,7 +227889,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
227889
227889
|
writeTrace(
|
|
227890
227890
|
config,
|
|
227891
227891
|
`Loaded Storm config into env:
|
|
227892
|
-
${Object.keys(process.env).
|
|
227892
|
+
${Object.keys(process.env).map(
|
|
227893
227893
|
(key) => ` - ${key}=${_isFunction(process.env[key]) ? "<function>" : JSON.stringify(process.env[key])}`
|
|
227894
227894
|
).join("\n")}`
|
|
227895
227895
|
);
|
package/src/utils/index.js
CHANGED
|
@@ -457243,7 +457243,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
457243
457243
|
var runTsupBuild = async (context, config, options8) => {
|
|
457244
457244
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
457245
457245
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
457246
|
-
const stormEnv = Object.keys(options8.env ?? {}).
|
|
457246
|
+
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
457247
457247
|
ret[key2] = options8.env?.[key2];
|
|
457248
457248
|
return ret;
|
|
457249
457249
|
}, {});
|
|
@@ -457331,7 +457331,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
457331
457331
|
outDir: outputPath,
|
|
457332
457332
|
noEmit: false,
|
|
457333
457333
|
esModuleInterop: true,
|
|
457334
|
-
|
|
457334
|
+
incremental: false,
|
|
457335
457335
|
noUnusedLocals: false,
|
|
457336
457336
|
emitDeclarationOnly: true,
|
|
457337
457337
|
declaration: true,
|