@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.21.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.4...workspace-tools-v1.21.5) (2023-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue with bad `$id` field in schema.json ([dd6cc03](https://github.com/storm-software/storm-ops/commit/dd6cc03f288e09f51cfebc1570c30ccef657d525))
|
|
7
|
+
|
|
1
8
|
## [1.21.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.3...workspace-tools-v1.21.4) (2023-12-02)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -98741,7 +98741,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
|
|
|
98741
98741
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
98742
98742
|
let config;
|
|
98743
98743
|
if (!executorOptions.skipReadingConfig) {
|
|
98744
|
-
config =
|
|
98744
|
+
config = (0, import_config_tools.getDefaultConfig)({
|
|
98745
98745
|
...await (0, import_config_tools.getConfigFile)(),
|
|
98746
98746
|
...(0, import_config_tools.getConfigEnv)()
|
|
98747
98747
|
});
|
|
@@ -98802,11 +98802,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
98802
98802
|
}
|
|
98803
98803
|
let config;
|
|
98804
98804
|
if (!generatorOptions.skipReadingConfig) {
|
|
98805
|
-
|
|
98806
|
-
|
|
98807
|
-
|
|
98808
|
-
...configFile,
|
|
98809
|
-
...configEnv
|
|
98805
|
+
config = (0, import_config_tools2.getDefaultConfig)({
|
|
98806
|
+
...await (0, import_config_tools2.getConfigFile)(),
|
|
98807
|
+
...(0, import_config_tools2.getConfigEnv)()
|
|
98810
98808
|
});
|
|
98811
98809
|
(0, import_config_tools2.setConfigEnv)(config);
|
|
98812
98810
|
(0, import_config_tools2.getLogLevel)(config.logLevel) >= import_config_tools2.LogLevel.DEBUG && console.debug(
|