@storm-software/workspace-tools 1.62.4 → 1.62.6
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 +490818 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/{base → src/base}/index.js +2 -4
- package/{executors → src/executors}/tsup/executor.js +1 -2
- package/{executors → src/executors}/tsup-browser/executor.js +1 -2
- package/{executors → src/executors}/tsup-neutral/executor.js +1 -2
- package/{executors → src/executors}/tsup-node/executor.js +1 -2
- package/{executors → src/executors}/typia/executor.js +1 -2
- package/{generators → src/generators}/browser-library/generator.js +1 -2
- package/{generators → src/generators}/config-schema/generator.js +1 -2
- package/{generators → src/generators}/neutral-library/generator.js +1 -2
- package/{generators → src/generators}/node-library/generator.js +1 -2
- package/{generators → src/generators}/preset/generator.js +1 -2
- package/{generators → src/generators}/release-version/generator.js +1 -2
- /package/{executors → src/executors}/npm-publish/executor.js +0 -0
- /package/{generators → src/generators}/init/init.js +0 -0
- /package/{utils → src/utils}/index.js +0 -0
package/package.json
CHANGED
|
@@ -391344,7 +391344,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
391344
391344
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
391345
391345
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
391346
391346
|
if (!executorOptions.skipReadingConfig) {
|
|
391347
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
391348
391347
|
(0, import_config_tools2.writeDebug)(
|
|
391349
391348
|
config,
|
|
391350
391349
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -391354,7 +391353,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
391354
391353
|
- projectName: ${projectName}
|
|
391355
391354
|
`
|
|
391356
391355
|
);
|
|
391357
|
-
config = await loadStormConfig(workspaceRoot);
|
|
391356
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
391358
391357
|
(0, import_config_tools2.writeTrace)(
|
|
391359
391358
|
config,
|
|
391360
391359
|
`Loaded Storm config into env:
|
|
@@ -391450,13 +391449,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
391450
391449
|
`);
|
|
391451
391450
|
const workspaceRoot = (0, import_config_tools4.findWorkspaceRootSafe)();
|
|
391452
391451
|
if (!generatorOptions.skipReadingConfig) {
|
|
391453
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
391454
391452
|
(0, import_config_tools3.writeDebug)(
|
|
391455
391453
|
config,
|
|
391456
391454
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
391457
391455
|
- workspaceRoot: ${workspaceRoot}`
|
|
391458
391456
|
);
|
|
391459
|
-
config = await loadStormConfig(workspaceRoot);
|
|
391457
|
+
config = await (0, import_config_tools4.loadStormConfig)(workspaceRoot);
|
|
391460
391458
|
(0, import_config_tools3.writeTrace)(
|
|
391461
391459
|
config,
|
|
391462
391460
|
`Loaded Storm config into env:
|
|
@@ -455220,7 +455220,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
455220
455220
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
455221
455221
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
455222
455222
|
if (!executorOptions.skipReadingConfig) {
|
|
455223
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
455224
455223
|
(0, import_config_tools2.writeDebug)(
|
|
455225
455224
|
config,
|
|
455226
455225
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -455230,7 +455229,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
455230
455229
|
- projectName: ${projectName}
|
|
455231
455230
|
`
|
|
455232
455231
|
);
|
|
455233
|
-
config = await loadStormConfig(workspaceRoot);
|
|
455232
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
455234
455233
|
(0, import_config_tools2.writeTrace)(
|
|
455235
455234
|
config,
|
|
455236
455235
|
`Loaded Storm config into env:
|
|
@@ -449038,7 +449038,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449038
449038
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
449039
449039
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
449040
449040
|
if (!executorOptions.skipReadingConfig) {
|
|
449041
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
449042
449041
|
(0, import_config_tools2.writeDebug)(
|
|
449043
449042
|
config,
|
|
449044
449043
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -449048,7 +449047,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449048
449047
|
- projectName: ${projectName}
|
|
449049
449048
|
`
|
|
449050
449049
|
);
|
|
449051
|
-
config = await loadStormConfig(workspaceRoot);
|
|
449050
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
449052
449051
|
(0, import_config_tools2.writeTrace)(
|
|
449053
449052
|
config,
|
|
449054
449053
|
`Loaded Storm config into env:
|
|
@@ -449038,7 +449038,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449038
449038
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
449039
449039
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
449040
449040
|
if (!executorOptions.skipReadingConfig) {
|
|
449041
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
449042
449041
|
(0, import_config_tools2.writeDebug)(
|
|
449043
449042
|
config,
|
|
449044
449043
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -449048,7 +449047,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449048
449047
|
- projectName: ${projectName}
|
|
449049
449048
|
`
|
|
449050
449049
|
);
|
|
449051
|
-
config = await loadStormConfig(workspaceRoot);
|
|
449050
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
449052
449051
|
(0, import_config_tools2.writeTrace)(
|
|
449053
449052
|
config,
|
|
449054
449053
|
`Loaded Storm config into env:
|
|
@@ -449038,7 +449038,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449038
449038
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
449039
449039
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
449040
449040
|
if (!executorOptions.skipReadingConfig) {
|
|
449041
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
449042
449041
|
(0, import_config_tools2.writeDebug)(
|
|
449043
449042
|
config,
|
|
449044
449043
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -449048,7 +449047,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
449048
449047
|
- projectName: ${projectName}
|
|
449049
449048
|
`
|
|
449050
449049
|
);
|
|
449051
|
-
config = await loadStormConfig(workspaceRoot);
|
|
449050
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
449052
449051
|
(0, import_config_tools2.writeTrace)(
|
|
449053
449052
|
config,
|
|
449054
449053
|
`Loaded Storm config into env:
|
|
@@ -227868,7 +227868,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
227868
227868
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
227869
227869
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
227870
227870
|
if (!executorOptions.skipReadingConfig) {
|
|
227871
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
227872
227871
|
(0, import_config_tools2.writeDebug)(
|
|
227873
227872
|
config,
|
|
227874
227873
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -227878,7 +227877,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
227878
227877
|
- projectName: ${projectName}
|
|
227879
227878
|
`
|
|
227880
227879
|
);
|
|
227881
|
-
config = await loadStormConfig(workspaceRoot);
|
|
227880
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
227882
227881
|
(0, import_config_tools2.writeTrace)(
|
|
227883
227882
|
config,
|
|
227884
227883
|
`Loaded Storm config into env:
|
|
@@ -391283,13 +391283,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
391283
391283
|
`);
|
|
391284
391284
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
391285
391285
|
if (!generatorOptions.skipReadingConfig) {
|
|
391286
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
391287
391286
|
(0, import_config_tools2.writeDebug)(
|
|
391288
391287
|
config,
|
|
391289
391288
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
391290
391289
|
- workspaceRoot: ${workspaceRoot}`
|
|
391291
391290
|
);
|
|
391292
|
-
config = await loadStormConfig(workspaceRoot);
|
|
391291
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
391293
391292
|
(0, import_config_tools2.writeTrace)(
|
|
391294
391293
|
config,
|
|
391295
391294
|
`Loaded Storm config into env:
|
|
@@ -176607,13 +176607,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
176607
176607
|
`);
|
|
176608
176608
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
176609
176609
|
if (!generatorOptions.skipReadingConfig) {
|
|
176610
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
176611
176610
|
(0, import_config_tools2.writeDebug)(
|
|
176612
176611
|
config,
|
|
176613
176612
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
176614
176613
|
- workspaceRoot: ${workspaceRoot}`
|
|
176615
176614
|
);
|
|
176616
|
-
config = await loadStormConfig(workspaceRoot);
|
|
176615
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
176617
176616
|
(0, import_config_tools2.writeTrace)(
|
|
176618
176617
|
config,
|
|
176619
176618
|
`Loaded Storm config into env:
|
|
@@ -391283,13 +391283,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
391283
391283
|
`);
|
|
391284
391284
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
391285
391285
|
if (!generatorOptions.skipReadingConfig) {
|
|
391286
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
391287
391286
|
(0, import_config_tools2.writeDebug)(
|
|
391288
391287
|
config,
|
|
391289
391288
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
391290
391289
|
- workspaceRoot: ${workspaceRoot}`
|
|
391291
391290
|
);
|
|
391292
|
-
config = await loadStormConfig(workspaceRoot);
|
|
391291
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
391293
391292
|
(0, import_config_tools2.writeTrace)(
|
|
391294
391293
|
config,
|
|
391295
391294
|
`Loaded Storm config into env:
|
|
@@ -391283,13 +391283,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
391283
391283
|
`);
|
|
391284
391284
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
391285
391285
|
if (!generatorOptions.skipReadingConfig) {
|
|
391286
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
391287
391286
|
(0, import_config_tools2.writeDebug)(
|
|
391288
391287
|
config,
|
|
391289
391288
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
391290
391289
|
- workspaceRoot: ${workspaceRoot}`
|
|
391291
391290
|
);
|
|
391292
|
-
config = await loadStormConfig(workspaceRoot);
|
|
391291
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
391293
391292
|
(0, import_config_tools2.writeTrace)(
|
|
391294
391293
|
config,
|
|
391295
391294
|
`Loaded Storm config into env:
|
|
@@ -172021,13 +172021,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
172021
172021
|
`);
|
|
172022
172022
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
172023
172023
|
if (!generatorOptions.skipReadingConfig) {
|
|
172024
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
172025
172024
|
(0, import_config_tools2.writeDebug)(
|
|
172026
172025
|
config,
|
|
172027
172026
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
172028
172027
|
- workspaceRoot: ${workspaceRoot}`
|
|
172029
172028
|
);
|
|
172030
|
-
config = await loadStormConfig(workspaceRoot);
|
|
172029
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
172031
172030
|
(0, import_config_tools2.writeTrace)(
|
|
172032
172031
|
config,
|
|
172033
172032
|
`Loaded Storm config into env:
|
|
@@ -174489,13 +174489,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
174489
174489
|
`);
|
|
174490
174490
|
const workspaceRoot = (0, import_config_tools3.findWorkspaceRootSafe)();
|
|
174491
174491
|
if (!generatorOptions.skipReadingConfig) {
|
|
174492
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
174493
174492
|
(0, import_config_tools2.writeDebug)(
|
|
174494
174493
|
config,
|
|
174495
174494
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
174496
174495
|
- workspaceRoot: ${workspaceRoot}`
|
|
174497
174496
|
);
|
|
174498
|
-
config = await loadStormConfig(workspaceRoot);
|
|
174497
|
+
config = await (0, import_config_tools3.loadStormConfig)(workspaceRoot);
|
|
174499
174498
|
(0, import_config_tools2.writeTrace)(
|
|
174500
174499
|
config,
|
|
174501
174500
|
`Loaded Storm config into env:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|