@morit/cli 1.9.0 → 1.9.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/ui-v3.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morit/cli",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Official Morit Developer CLI for Cloud Projects, validation, builds, and deployments",
5
5
  "type": "module",
6
6
  "bin": {
package/src/ui-v3.js CHANGED
@@ -69,7 +69,7 @@ export function compileUiV3(config, files, {capabilities = new Set(), routes = n
69
69
  }
70
70
  visit(value); return [...result];
71
71
  }
72
- const graph = Object.fromEntries(Object.entries(values).map(([key,value]) => [key,dependencies(value)]));
72
+ const graph = Object.fromEntries(Object.entries(values).sort(([left], [right]) => left.localeCompare(right)).map(([key,value]) => [key,dependencies(value)]));
73
73
  return dependencyOrder(graph);
74
74
  }
75
75
  const sources = config.data_sources ?? [];