@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/CHANGELOG.md +18 -0
- package/dist/cli/index.mjs +99 -20
- package/dist/preview/.next/BUILD_ID +1 -1
- package/dist/preview/.next/app-build-manifest.json +1 -1
- package/dist/preview/.next/build-manifest.json +2 -2
- package/dist/preview/.next/prerender-manifest.json +3 -3
- package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/preview/.next/server/app/_not-found.html +1 -1
- package/dist/preview/.next/server/app/_not-found.rsc +1 -1
- package/dist/preview/.next/server/app/page.js +58 -52
- package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
- package/dist/preview/.next/server/pages/404.html +1 -1
- package/dist/preview/.next/server/pages/500.html +1 -1
- package/dist/preview/.next/server/server-reference-manifest.js +1 -1
- package/dist/preview/.next/server/server-reference-manifest.json +1 -1
- package/dist/preview/.next/static/chunks/app/{page-5f19acb0cea71945.js → page-68aaff7e6de6f96c.js} +1 -1
- package/dist/preview/.next/trace +19 -19
- package/package.json +3 -3
- package/src/components/variables/form.tsx +2 -2
- /package/dist/preview/.next/static/{jkZyLIxdpFajAQRvv0QeK → X66rhTPIVQEL29BISHziC}/_buildManifest.js +0 -0
- /package/dist/preview/.next/static/{jkZyLIxdpFajAQRvv0QeK → X66rhTPIVQEL29BISHziC}/_ssgManifest.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@envin/cli",
|
|
3
|
-
"version": "1.1.
|
|
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.
|
|
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);
|
/package/dist/preview/.next/static/{jkZyLIxdpFajAQRvv0QeK → X66rhTPIVQEL29BISHziC}/_buildManifest.js
RENAMED
|
File without changes
|
/package/dist/preview/.next/static/{jkZyLIxdpFajAQRvv0QeK → X66rhTPIVQEL29BISHziC}/_ssgManifest.js
RENAMED
|
File without changes
|