@storm-software/workspace-tools 1.21.5 → 1.21.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 +7 -0
- package/index.js +4 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +4 -6
- package/src/executors/tsup/executor.js +1 -1
- package/src/executors/tsup-neutral/executor.js +1 -1
- package/src/executors/tsup-node/executor.js +1 -1
- package/src/generators/config-schema/generator.js +3 -5
- package/src/generators/node-library/generator.js +3 -5
- package/src/generators/preset/generator.js +3 -5
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -142,7 +142,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
|
|
|
142
142
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
143
143
|
let config;
|
|
144
144
|
if (!executorOptions.skipReadingConfig) {
|
|
145
|
-
config =
|
|
145
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
146
146
|
...await (0, import_config_tools.getConfigFile)(),
|
|
147
147
|
...(0, import_config_tools.getConfigEnv)()
|
|
148
148
|
});
|
|
@@ -203,11 +203,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
203
203
|
}
|
|
204
204
|
let config;
|
|
205
205
|
if (!generatorOptions.skipReadingConfig) {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
...configFile,
|
|
210
|
-
...configEnv
|
|
206
|
+
config = (0, import_config_tools2.getDefaultConfig)({
|
|
207
|
+
...await (0, import_config_tools2.getConfigFile)(),
|
|
208
|
+
...(0, import_config_tools2.getConfigEnv)()
|
|
211
209
|
});
|
|
212
210
|
(0, import_config_tools2.setConfigEnv)(config);
|
|
213
211
|
(0, import_config_tools2.getLogLevel)(config.logLevel) >= import_config_tools2.LogLevel.DEBUG && console.debug(
|
|
@@ -104928,7 +104928,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
|
|
|
104928
104928
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
104929
104929
|
let config;
|
|
104930
104930
|
if (!executorOptions.skipReadingConfig) {
|
|
104931
|
-
config =
|
|
104931
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
104932
104932
|
...await (0, import_config_tools.getConfigFile)(),
|
|
104933
104933
|
...(0, import_config_tools.getConfigEnv)()
|
|
104934
104934
|
});
|
|
@@ -98692,7 +98692,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
|
|
|
98692
98692
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
98693
98693
|
let config;
|
|
98694
98694
|
if (!executorOptions.skipReadingConfig) {
|
|
98695
|
-
config =
|
|
98695
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
98696
98696
|
...await (0, import_config_tools.getConfigFile)(),
|
|
98697
98697
|
...(0, import_config_tools.getConfigEnv)()
|
|
98698
98698
|
});
|
|
@@ -98822,7 +98822,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
|
|
|
98822
98822
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
98823
98823
|
let config;
|
|
98824
98824
|
if (!executorOptions.skipReadingConfig) {
|
|
98825
|
-
config =
|
|
98825
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
98826
98826
|
...await (0, import_config_tools.getConfigFile)(),
|
|
98827
98827
|
...(0, import_config_tools.getConfigEnv)()
|
|
98828
98828
|
});
|
|
@@ -22895,11 +22895,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
22895
22895
|
}
|
|
22896
22896
|
let config;
|
|
22897
22897
|
if (!generatorOptions.skipReadingConfig) {
|
|
22898
|
-
|
|
22899
|
-
|
|
22900
|
-
|
|
22901
|
-
...configFile,
|
|
22902
|
-
...configEnv
|
|
22898
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
22899
|
+
...await (0, import_config_tools.getConfigFile)(),
|
|
22900
|
+
...(0, import_config_tools.getConfigEnv)()
|
|
22903
22901
|
});
|
|
22904
22902
|
(0, import_config_tools.setConfigEnv)(config);
|
|
22905
22903
|
(0, import_config_tools.getLogLevel)(config.logLevel) >= import_config_tools.LogLevel.DEBUG && console.debug(
|
|
@@ -37307,11 +37307,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
37307
37307
|
}
|
|
37308
37308
|
let config;
|
|
37309
37309
|
if (!generatorOptions.skipReadingConfig) {
|
|
37310
|
-
|
|
37311
|
-
|
|
37312
|
-
|
|
37313
|
-
...configFile,
|
|
37314
|
-
...configEnv
|
|
37310
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
37311
|
+
...await (0, import_config_tools.getConfigFile)(),
|
|
37312
|
+
...(0, import_config_tools.getConfigEnv)()
|
|
37315
37313
|
});
|
|
37316
37314
|
(0, import_config_tools.setConfigEnv)(config);
|
|
37317
37315
|
(0, import_config_tools.getLogLevel)(config.logLevel) >= import_config_tools.LogLevel.DEBUG && console.debug(
|
|
@@ -18302,11 +18302,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
18302
18302
|
}
|
|
18303
18303
|
let config;
|
|
18304
18304
|
if (!generatorOptions.skipReadingConfig) {
|
|
18305
|
-
|
|
18306
|
-
|
|
18307
|
-
|
|
18308
|
-
...configFile,
|
|
18309
|
-
...configEnv
|
|
18305
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
18306
|
+
...await (0, import_config_tools.getConfigFile)(),
|
|
18307
|
+
...(0, import_config_tools.getConfigEnv)()
|
|
18310
18308
|
});
|
|
18311
18309
|
(0, import_config_tools.setConfigEnv)(config);
|
|
18312
18310
|
(0, import_config_tools.getLogLevel)(config.logLevel) >= import_config_tools.LogLevel.DEBUG && console.debug(
|