@storm-software/workspace-tools 1.72.2 → 1.72.3

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.
@@ -3905,9 +3905,13 @@ var init_find_up = __esm({
3905
3905
  // packages/config-tools/src/utilities/find-workspace-root.ts
3906
3906
  function findWorkspaceRootSafe(pathInsideMonorepo) {
3907
3907
  if (process.env.STORM_WORKSPACE_ROOT || process.env.NX_WORKSPACE_ROOT_PATH) {
3908
- return correctPaths(process.env.STORM_WORKSPACE_ROOT ?? process.env.NX_WORKSPACE_ROOT_PATH);
3908
+ return correctPaths(
3909
+ process.env.STORM_WORKSPACE_ROOT ?? process.env.NX_WORKSPACE_ROOT_PATH
3910
+ );
3909
3911
  }
3910
- return correctPaths(findFolderUp(pathInsideMonorepo ?? process.cwd(), rootFiles));
3912
+ return correctPaths(
3913
+ findFolderUp(pathInsideMonorepo ?? process.cwd(), rootFiles)
3914
+ );
3911
3915
  }
3912
3916
  function findWorkspaceRoot(pathInsideMonorepo) {
3913
3917
  const result = findWorkspaceRootSafe(pathInsideMonorepo);
@@ -3929,8 +3933,11 @@ var init_find_workspace_root = __esm({
3929
3933
  init_find_up();
3930
3934
  rootFiles = [
3931
3935
  "storm.json",
3932
- "storm.config.js",
3933
- "storm.config.ts",
3936
+ "storm.json",
3937
+ "storm.yaml",
3938
+ "storm.yml",
3939
+ "storm.js",
3940
+ "storm.ts",
3934
3941
  ".storm.json",
3935
3942
  ".storm.yaml",
3936
3943
  ".storm.yml",