@storm-software/workspace-tools 1.21.18 → 1.21.19

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.21.18](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.17...workspace-tools-v1.21.18) (2023-12-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **config-tools:** Update generic type used in `createStormConfig` function ([fe72f6d](https://github.com/storm-software/storm-ops/commit/fe72f6d52ca0ea02e15f07679ba5f0e824a228be))
7
+
1
8
  ## [1.21.17](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.16...workspace-tools-v1.21.17) (2023-12-05)
2
9
 
3
10
 
package/index.js CHANGED
@@ -108756,7 +108756,7 @@ var getDefaultConfig = (config = {}) => {
108756
108756
  };
108757
108757
  var getWorkspaceRoot = () => {
108758
108758
  const root = (0, import_find_workspace_root.findWorkspaceRoot)(process.cwd());
108759
- process.env.STORM_REPO_ROOT ??= root?.dir;
108759
+ process.env.STORM_WORKSPACE_ROOT ??= root?.dir;
108760
108760
  process.env.NX_WORKSPACE_ROOT_PATH ??= root?.dir;
108761
108761
  return root?.dir;
108762
108762
  };
@@ -108947,7 +108947,7 @@ var chalk = __toESM(require_source());
108947
108947
  var import_find_workspace_root2 = require("nx/src/utils/find-workspace-root.js");
108948
108948
  var getWorkspaceRoot2 = () => {
108949
108949
  const root = (0, import_find_workspace_root2.findWorkspaceRoot)(process.cwd());
108950
- process.env.STORM_REPO_ROOT ??= root?.dir;
108950
+ process.env.STORM_WORKSPACE_ROOT ??= root?.dir;
108951
108951
  process.env.NX_WORKSPACE_ROOT_PATH ??= root?.dir;
108952
108952
  return root?.dir;
108953
108953
  };