@envin/cli 1.1.5 → 1.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@envin/cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "Type-safe env validation with live previews",
5
5
  "keywords": [
6
6
  "turbostarter",
@@ -49,14 +49,14 @@
49
49
  "chalk": "^5.4.1",
50
50
  "chokidar": "^4.0.3",
51
51
  "commander": "^13.1.0",
52
+ "consola": "^3.4.2",
52
53
  "debounce": "^2.2.0",
53
54
  "dotenv": "^16.5.0",
54
- "envin": "1.1.5",
55
+ "envin": "1.1.7",
55
56
  "esbuild": "^0.25.0",
56
57
  "log-symbols": "^7.0.0",
57
58
  "mime-types": "^3.0.1",
58
59
  "next": "^15.4.6",
59
- "consola": "^3.4.2",
60
60
  "ora": "^8.2.0",
61
61
  "react-hook-form": "^7.62.0",
62
62
  "socket.io": "^4.8.1",
@@ -150,7 +150,7 @@ export const Form = () => {
150
150
  }
151
151
 
152
152
  const renderNode = (node: TreeNode) => {
153
- const childKeys = Object.keys(node.children);
153
+ const childKeys = Object.keys(node.children).reverse();
154
154
  return (
155
155
  <>
156
156
  {node.variables.length > 0 && (
@@ -169,7 +169,7 @@ export const Form = () => {
169
169
  </div>
170
170
  )}
171
171
  {childKeys.length > 0 && (
172
- <Accordion type="multiple">
172
+ <Accordion type="multiple" defaultValue={childKeys}>
173
173
  {childKeys.map((child) => {
174
174
  const childNode = node.children[child];
175
175
  const Icon = getIconComponent(child);