@storm-software/workspace-tools 1.43.9 → 1.43.10
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 +8 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +8 -4
- package/src/executors/design-tokens/executor.js +8 -4
- package/src/executors/tsup/executor.js +8 -4
- package/src/executors/tsup-browser/executor.js +8 -4
- package/src/executors/tsup-neutral/executor.js +8 -4
- package/src/executors/tsup-node/executor.js +8 -4
- package/src/generators/browser-library/generator.js +8 -4
- package/src/generators/config-schema/generator.js +8 -4
- package/src/generators/neutral-library/generator.js +8 -4
- package/src/generators/node-library/generator.js +8 -4
- package/src/generators/preset/generator.js +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.43.9](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.8...workspace-tools-v1.43.9) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config-tools:** Added code to print out config values added ([ea56410](https://github.com/storm-software/storm-ops/commit/ea56410f9e7e9f3e4f68268395a13127a1653d2d))
|
|
7
|
+
|
|
1
8
|
## [1.43.8](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.7...workspace-tools-v1.43.8) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -130574,15 +130574,19 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130574
130574
|
if (!_workspaceRoot) {
|
|
130575
130575
|
_workspaceRoot = findWorkspaceRoot();
|
|
130576
130576
|
}
|
|
130577
|
-
const configFile =
|
|
130578
|
-
|
|
130579
|
-
|
|
130580
|
-
|
|
130577
|
+
const configFile = await getConfigFile(_workspaceRoot);
|
|
130578
|
+
const configEnv = getConfigEnv();
|
|
130579
|
+
for (const key of Object.keys(configEnv)) {
|
|
130580
|
+
if (configEnv[key] !== void 0 && configEnv[key] !== null) {
|
|
130581
|
+
configFile[key] = configEnv[key];
|
|
130582
|
+
}
|
|
130583
|
+
}
|
|
130581
130584
|
const config = StormConfigSchema.parse(configFile);
|
|
130582
130585
|
setConfigEnv(config);
|
|
130583
130586
|
console.debug("\n\n");
|
|
130584
130587
|
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
130585
130588
|
for (const key of Object.keys(configFile)) {
|
|
130589
|
+
console.debug(` ----- ${key} ----- `);
|
|
130586
130590
|
console.debug(configFile[key]);
|
|
130587
130591
|
}
|
|
130588
130592
|
console.debug("\n\n");
|