@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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @envin/cli
2
2
 
3
+ ## 1.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#40](https://github.com/turbostarter/envin/pull/40) [`c518621`](https://github.com/turbostarter/envin/commit/c518621f4d0dc5b60abdc61656eb10176db28707) Thanks [@Bartek532](https://github.com/Bartek532)! - fix next dependency
8
+
9
+ - Updated dependencies [[`c518621`](https://github.com/turbostarter/envin/commit/c518621f4d0dc5b60abdc61656eb10176db28707)]:
10
+ - envin@1.1.7
11
+
12
+ ## 1.1.6
13
+
14
+ ### Patch Changes
15
+
16
+ - [#38](https://github.com/turbostarter/envin/pull/38) [`626d690`](https://github.com/turbostarter/envin/commit/626d690a72fa55a1f717644ea482f1490884df48) Thanks [@Bartek532](https://github.com/Bartek532)! - fix hot reloading issues
17
+
18
+ - Updated dependencies [[`626d690`](https://github.com/turbostarter/envin/commit/626d690a72fa55a1f717644ea482f1490884df48)]:
19
+ - envin@1.1.6
20
+
3
21
  ## 1.1.5
4
22
 
5
23
  ### Patch Changes
@@ -6,7 +6,7 @@ import { program } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@envin/cli",
9
- version: "1.1.5",
9
+ version: "1.1.7",
10
10
  description: "Type-safe env validation with live previews",
11
11
  keywords: [
12
12
  "turbostarter",
@@ -55,6 +55,7 @@ var package_default = {
55
55
  chalk: "^5.4.1",
56
56
  chokidar: "^4.0.3",
57
57
  commander: "^13.1.0",
58
+ consola: "^3.4.2",
58
59
  debounce: "^2.2.0",
59
60
  dotenv: "^16.5.0",
60
61
  envin: "workspace:*",
@@ -62,7 +63,6 @@ var package_default = {
62
63
  "log-symbols": "^7.0.0",
63
64
  "mime-types": "^3.0.1",
64
65
  next: "^15.4.6",
65
- consola: "^3.4.2",
66
66
  ora: "^8.2.0",
67
67
  "react-hook-form": "^7.62.0",
68
68
  "socket.io": "^4.8.1",
@@ -102,9 +102,10 @@ var package_default = {
102
102
  };
103
103
 
104
104
  // src/cli/commands/dev.ts
105
- import fs3 from "fs";
105
+ import fs4 from "fs";
106
106
 
107
107
  // src/cli/utils/hot-reload/setup-hot-reloading.ts
108
+ import { promises as fs3 } from "fs";
108
109
  import path6 from "path";
109
110
  import { watch } from "chokidar";
110
111
  import debounce from "debounce";
@@ -228,6 +229,13 @@ var startDevServer = async ({
228
229
  port,
229
230
  verbose
230
231
  }) => {
232
+ const [majorNodeVersion] = process.versions.node.split(".");
233
+ if (majorNodeVersion && Number.parseInt(majorNodeVersion) < 18) {
234
+ logger.error(
235
+ `Node ${majorNodeVersion} is not supported. Please upgrade to Node 18 or higher.`
236
+ );
237
+ process.exit(1);
238
+ }
231
239
  devServer = http.createServer((req, res) => {
232
240
  if (!req.url) {
233
241
  res.end(404);
@@ -656,6 +664,89 @@ var createDependencyGraph = async (directory) => {
656
664
  };
657
665
 
658
666
  // src/cli/utils/hot-reload/setup-hot-reloading.ts
667
+ var IGNORED_DIR_NAMES = [
668
+ "node_modules",
669
+ ".git",
670
+ "dist",
671
+ "build",
672
+ "out",
673
+ "coverage",
674
+ ".cache",
675
+ "tmp"
676
+ ];
677
+ var normalizePath = (p) => p.split(path6.sep).join("/");
678
+ var isPathInIgnoredDir = (p) => {
679
+ const normalized = normalizePath(p);
680
+ return IGNORED_DIR_NAMES.some(
681
+ (dir) => normalized.includes(`/${dir}/`) || normalized.endsWith(`/${dir}`) || normalized.startsWith(`${dir}/`)
682
+ );
683
+ };
684
+ var toDirGlob = (dir) => [`**/${dir}/**`, `${dir}/**`];
685
+ var readGitignoreGlobs = async (baseDir) => {
686
+ try {
687
+ const gitignorePath = path6.join(baseDir, ".gitignore");
688
+ const data = await fs3.readFile(gitignorePath, "utf8");
689
+ const lines = data.split(/\r?\n/);
690
+ const globs = [];
691
+ for (const rawLine of lines) {
692
+ const line = rawLine.trim();
693
+ if (line.length === 0 || line.startsWith("#") || line.startsWith("!")) {
694
+ continue;
695
+ }
696
+ let pattern = line.replace(/^\//, "");
697
+ if (pattern.endsWith("/")) {
698
+ pattern = pattern.slice(0, -1);
699
+ globs.push(`**/${pattern}/**`, `${pattern}/**`);
700
+ continue;
701
+ }
702
+ if (pattern.includes("*") || pattern.includes("?")) {
703
+ globs.push(`**/${pattern}`, pattern);
704
+ } else {
705
+ globs.push(
706
+ `**/${pattern}/**`,
707
+ `${pattern}/**`,
708
+ `**/${pattern}`,
709
+ pattern
710
+ );
711
+ }
712
+ }
713
+ return globs;
714
+ } catch {
715
+ return [];
716
+ }
717
+ };
718
+ var buildIgnoredGlobs = async (baseDir) => {
719
+ const defaultIgnoredGlobs = IGNORED_DIR_NAMES.flatMap(toDirGlob);
720
+ const gitignoreGlobs = await readGitignoreGlobs(baseDir);
721
+ return [...defaultIgnoredGlobs, ...gitignoreGlobs];
722
+ };
723
+ var createEnvWatcher = async (baseDir) => {
724
+ const ignoredGlobs = await buildIgnoredGlobs(baseDir);
725
+ return watch(["**/*.{js,ts,jsx,tsx,mjs,cjs}"], {
726
+ cwd: baseDir,
727
+ ignoreInitial: true,
728
+ ignored: ignoredGlobs,
729
+ ignorePermissionErrors: true,
730
+ awaitWriteFinish: { stabilityThreshold: 50, pollInterval: 10 }
731
+ });
732
+ };
733
+ var addExternalFilesToWatcher = (w, files) => {
734
+ for (const p of files) {
735
+ if (!isPathInIgnoredDir(p)) {
736
+ w.add(p);
737
+ }
738
+ }
739
+ };
740
+ var attachShutdownHandlers = (w, verbose) => {
741
+ const exit = async () => {
742
+ if (verbose) {
743
+ logger.info("Stopping file watcher and cleaning up...");
744
+ }
745
+ await w.close();
746
+ };
747
+ process.on("SIGINT", exit);
748
+ process.on("uncaughtException", exit);
749
+ };
659
750
  var setupHotreloading = async ({
660
751
  devServer: devServer2,
661
752
  envDirRelativePath,
@@ -712,25 +803,13 @@ var setupHotreloading = async ({
712
803
  root: absolutePathToEnvDirectory
713
804
  });
714
805
  }
715
- const watcher = watch("", {
716
- ignoreInitial: true,
717
- cwd: absolutePathToEnvDirectory
718
- });
806
+ const watcher = await createEnvWatcher(absolutePathToEnvDirectory);
719
807
  const getFilesOutsideEnvDirectory = () => Object.keys(dependencyGraph).filter(
720
808
  (p) => path6.relative(absolutePathToEnvDirectory, p).startsWith("..")
721
809
  );
722
810
  let filesOutsideEnvDirectory = getFilesOutsideEnvDirectory();
723
- for (const p of filesOutsideEnvDirectory) {
724
- watcher.add(p);
725
- }
726
- const exit = async () => {
727
- if (verbose) {
728
- logger.info("Stopping file watcher and cleaning up...");
729
- }
730
- await watcher.close();
731
- };
732
- process.on("SIGINT", exit);
733
- process.on("uncaughtException", exit);
811
+ addExternalFilesToWatcher(watcher, filesOutsideEnvDirectory);
812
+ attachShutdownHandlers(watcher, verbose);
734
813
  watcher.on("all", async (event, relativePathToChangeTarget) => {
735
814
  if (verbose) {
736
815
  logger.debug("File system event", {
@@ -754,7 +833,7 @@ var setupHotreloading = async ({
754
833
  }
755
834
  }
756
835
  for (const p of newFilesOutsideEnvDirectory) {
757
- if (!filesOutsideEnvDirectory.includes(p)) {
836
+ if (!filesOutsideEnvDirectory.includes(p) && !isPathInIgnoredDir(p)) {
758
837
  watcher.add(p);
759
838
  }
760
839
  }
@@ -784,7 +863,7 @@ var dev = async ({ dir: envDirRelativePath, port, verbose }) => {
784
863
  port
785
864
  });
786
865
  }
787
- if (!fs3.existsSync(envDirRelativePath)) {
866
+ if (!fs4.existsSync(envDirRelativePath)) {
788
867
  logger.error(`Missing ${envDirRelativePath} folder!`);
789
868
  process.exit(1);
790
869
  }
@@ -1 +1 @@
1
- jkZyLIxdpFajAQRvv0QeK
1
+ X66rhTPIVQEL29BISHziC
@@ -21,7 +21,7 @@
21
21
  "static/chunks/902-a1b735a0b0a65f38.js",
22
22
  "static/chunks/main-app-ef4fe5383916541f.js",
23
23
  "static/chunks/442-41ca9bf0a86c9fdd.js",
24
- "static/chunks/app/page-5f19acb0cea71945.js"
24
+ "static/chunks/app/page-68aaff7e6de6f96c.js"
25
25
  ]
26
26
  }
27
27
  }
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/jkZyLIxdpFajAQRvv0QeK/_buildManifest.js",
9
- "static/jkZyLIxdpFajAQRvv0QeK/_ssgManifest.js"
8
+ "static/X66rhTPIVQEL29BISHziC/_buildManifest.js",
9
+ "static/X66rhTPIVQEL29BISHziC/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [
12
12
  "static/chunks/webpack-6fd1f9e039b848f1.js",
@@ -34,8 +34,8 @@
34
34
  "dynamicRoutes": {},
35
35
  "notFoundRoutes": [],
36
36
  "preview": {
37
- "previewModeId": "0b0b381c03a8fba326214e9de81f062a",
38
- "previewModeSigningKey": "1353fcefd9d5345604178ffb09d04b0c5dfc6d24e602790f037669a30b553875",
39
- "previewModeEncryptionKey": "591fd3ca402aa8b250f538a346b26f1453d7e5a88ac27311d55bef7290cc482e"
37
+ "previewModeId": "4116bb4f34314c93fe94a1fdb02a3c30",
38
+ "previewModeSigningKey": "8b024f8a08f053da2553a2064040e1f1a8c58a04d13f6c965b1265954736900f",
39
+ "previewModeEncryptionKey": "f18df1bc5eab1dd6b3dc0c1f6f6f7888a79f8830a8248eff5c23eb08f1f7e2ee"
40
40
  }
41
41
  }
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"700":{"*":{"id":"89082","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"32526","name":"*","chunks":[],"async":false}},"1676":{"*":{"id":"57526","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"33737","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"3220","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"45812","name":"*","chunks":[],"async":false}},"5136":{"*":{"id":"79510","name":"*","chunks":[],"async":false}},"6644":{"*":{"id":"41483","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"35856","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"55492","name":"*","chunks":[],"async":false}},"8547":{"*":{"id":"53673","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"30385","name":"*","chunks":[],"async":false}},"9494":{"*":{"id":"84933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/envin/envin/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1256,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1256,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/client-page.js":{"id":9065,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/client-page.js":{"id":9065,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/client-segment.js":{"id":3283,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/client-segment.js":{"id":3283,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4712,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4712,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/layout-router.js":{"id":7132,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7132,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7748,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7748,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":700,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":700,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/render-from-template-context.js":{"id":5082,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":5082,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":4780,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":4780,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":2690,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":7972,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/app/globals.css":{"id":3139,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/filters/context.tsx":{"id":8547,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-5f19acb0cea71945.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/filters/index.tsx":{"id":9494,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-5f19acb0cea71945.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/context.tsx":{"id":6644,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-5f19acb0cea71945.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/form.tsx":{"id":5136,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-5f19acb0cea71945.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/preview.tsx":{"id":1676,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-5f19acb0cea71945.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/envin/envin/packages/cli/src/":[],"/home/runner/work/envin/envin/packages/cli/src/app/layout":[{"inlined":false,"path":"static/css/c61a81451691d564.css"}],"/home/runner/work/envin/envin/packages/cli/src/app/page":[],"/home/runner/work/envin/envin/packages/cli/src/app/_not-found/page":[]},"rscModuleMapping":{"700":{"*":{"id":"20968","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"93824","name":"*","chunks":[],"async":false}},"1676":{"*":{"id":"77640","name":"*","chunks":[],"async":false}},"3139":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"54439","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"94730","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"10282","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"78298","name":"*","chunks":[],"async":false}},"5136":{"*":{"id":"92980","name":"*","chunks":[],"async":false}},"6644":{"*":{"id":"80837","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"19774","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"53170","name":"*","chunks":[],"async":false}},"8547":{"*":{"id":"70879","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"69355","name":"*","chunks":[],"async":false}},"9494":{"*":{"id":"91078","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"700":{"*":{"id":"89082","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"32526","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"33737","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"3220","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"45812","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"35856","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"55492","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"30385","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"700":{"*":{"id":"89082","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"32526","name":"*","chunks":[],"async":false}},"1676":{"*":{"id":"57526","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"33737","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"3220","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"45812","name":"*","chunks":[],"async":false}},"5136":{"*":{"id":"79510","name":"*","chunks":[],"async":false}},"5609":{"*":{"id":"53730","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"35856","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"55492","name":"*","chunks":[],"async":false}},"8547":{"*":{"id":"53673","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"30385","name":"*","chunks":[],"async":false}},"9494":{"*":{"id":"84933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/envin/envin/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1256,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1256,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/client-page.js":{"id":9065,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/client-page.js":{"id":9065,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/client-segment.js":{"id":3283,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/client-segment.js":{"id":3283,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4712,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4712,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/layout-router.js":{"id":7132,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7132,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7748,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7748,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":700,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":700,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/client/components/render-from-template-context.js":{"id":5082,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":5082,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":4780,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":4780,"name":"*","chunks":[],"async":false},"/home/runner/work/envin/envin/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":2690,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":7972,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/app/globals.css":{"id":3139,"name":"*","chunks":["177","static/chunks/app/layout-e5f42c1da65f0b8c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/filters/context.tsx":{"id":8547,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-68aaff7e6de6f96c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/filters/index.tsx":{"id":9494,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-68aaff7e6de6f96c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/context.tsx":{"id":5609,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-68aaff7e6de6f96c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/form.tsx":{"id":5136,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-68aaff7e6de6f96c.js"],"async":false},"/home/runner/work/envin/envin/packages/cli/src/components/variables/preview.tsx":{"id":1676,"name":"*","chunks":["442","static/chunks/442-41ca9bf0a86c9fdd.js","974","static/chunks/app/page-68aaff7e6de6f96c.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/envin/envin/packages/cli/src/":[],"/home/runner/work/envin/envin/packages/cli/src/app/layout":[{"inlined":false,"path":"static/css/c61a81451691d564.css"}],"/home/runner/work/envin/envin/packages/cli/src/app/page":[],"/home/runner/work/envin/envin/packages/cli/src/app/_not-found/page":[]},"rscModuleMapping":{"700":{"*":{"id":"20968","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"93824","name":"*","chunks":[],"async":false}},"1676":{"*":{"id":"77640","name":"*","chunks":[],"async":false}},"3139":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"54439","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"94730","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"10282","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"78298","name":"*","chunks":[],"async":false}},"5136":{"*":{"id":"92980","name":"*","chunks":[],"async":false}},"5609":{"*":{"id":"80837","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"19774","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"53170","name":"*","chunks":[],"async":false}},"8547":{"*":{"id":"70879","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"69355","name":"*","chunks":[],"async":false}},"9494":{"*":{"id":"91078","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"700":{"*":{"id":"89082","name":"*","chunks":[],"async":false}},"1256":{"*":{"id":"32526","name":"*","chunks":[],"async":false}},"3283":{"*":{"id":"33737","name":"*","chunks":[],"async":false}},"4712":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"4780":{"*":{"id":"3220","name":"*","chunks":[],"async":false}},"5082":{"*":{"id":"45812","name":"*","chunks":[],"async":false}},"7132":{"*":{"id":"35856","name":"*","chunks":[],"async":false}},"7748":{"*":{"id":"55492","name":"*","chunks":[],"async":false}},"9065":{"*":{"id":"30385","name":"*","chunks":[],"async":false}}}}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--jkZyLIxdpFajAQRvv0QeK--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c61a81451691d564.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-6fd1f9e039b848f1.js"/><script src="/_next/static/chunks/87c73c54-1f4741035a95c140.js" async=""></script><script src="/_next/static/chunks/902-a1b735a0b0a65f38.js" async=""></script><script src="/_next/static/chunks/main-app-ef4fe5383916541f.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Envin</title><meta name="description" content="Framework-agnostic, type-safe tool to validate and preview your environment variables—powered by your favorite schema validator."/><link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="24x24"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_5cfdac __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex flex-col h-full gap-4 py-6 px-8"><header class="flex items-center gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-shrub size-11 text-primary" aria-hidden="true"><path d="M12 22v-7l-2-2"></path><path d="M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z"></path><path d="m14 14-2 2"></path></svg><div class="flex flex-col"><h1 class="text-2xl font-bold">Envin</h1><p class="text-sm text-muted-foreground">Manage environment variables for your project. Validate and set them up in seconds.</p></div></header><main class="flex flex-col gap-4 min-h-0 h-full"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/webpack-6fd1f9e039b848f1.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[7132,[],\"\"]\n3:I[5082,[],\"\"]\n4:I[700,[],\"OutletBoundary\"]\n6:I[7748,[],\"AsyncMetadataOutlet\"]\n8:I[700,[],\"ViewportBoundary\"]\na:I[700,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[1256,[],\"\"]\n:HL[\"/_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c61a81451691d564.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"jkZyLIxdpFajAQRvv0QeK\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c61a81451691d564.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_5cfdac __variable_9a8899 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col h-full gap-4 py-6 px-8\",\"children\":[[\"$\",\"header\",null,{\"className\":\"flex items-center gap-3\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-shrub size-11 text-primary\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"eqv9mc\",{\"d\":\"M12 22v-7l-2-2\"}],[\"$\",\"path\",\"ubcgy\",{\"d\":\"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z\"}],[\"$\",\"path\",\"847xa2\",{\"d\":\"m14 14-2 2\"}],\"$undefined\"]}],[\"$\",\"div\",null,{\"className\":\"flex flex-col\",\"children\":[[\"$\",\"h1\",null,{\"className\":\"text-2xl font-bold\",\"children\":\"Envin\"}],[\"$\",\"p\",null,{\"className\":\"text-sm text-muted-foreground\",\"children\":\"Manage environment variables for your project. Validate and set them up in seconds.\"}]]}]]}],[\"$\",\"main\",null,{\"className\":\"flex flex-col gap-4 min-h-0 h-full\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"e:I[4780,[],\"IconMark\"]\n7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Envin\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Framework-agnostic, type-safe tool to validate and preview your environment variables—powered by your favorite schema validator.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"24x24\"}],[\"$\",\"$Le\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--X66rhTPIVQEL29BISHziC--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c61a81451691d564.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-6fd1f9e039b848f1.js"/><script src="/_next/static/chunks/87c73c54-1f4741035a95c140.js" async=""></script><script src="/_next/static/chunks/902-a1b735a0b0a65f38.js" async=""></script><script src="/_next/static/chunks/main-app-ef4fe5383916541f.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Envin</title><meta name="description" content="Framework-agnostic, type-safe tool to validate and preview your environment variables—powered by your favorite schema validator."/><link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="24x24"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_5cfdac __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex flex-col h-full gap-4 py-6 px-8"><header class="flex items-center gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-shrub size-11 text-primary" aria-hidden="true"><path d="M12 22v-7l-2-2"></path><path d="M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z"></path><path d="m14 14-2 2"></path></svg><div class="flex flex-col"><h1 class="text-2xl font-bold">Envin</h1><p class="text-sm text-muted-foreground">Manage environment variables for your project. Validate and set them up in seconds.</p></div></header><main class="flex flex-col gap-4 min-h-0 h-full"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/webpack-6fd1f9e039b848f1.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[7132,[],\"\"]\n3:I[5082,[],\"\"]\n4:I[700,[],\"OutletBoundary\"]\n6:I[7748,[],\"AsyncMetadataOutlet\"]\n8:I[700,[],\"ViewportBoundary\"]\na:I[700,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[1256,[],\"\"]\n:HL[\"/_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c61a81451691d564.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"X66rhTPIVQEL29BISHziC\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c61a81451691d564.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_5cfdac __variable_9a8899 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col h-full gap-4 py-6 px-8\",\"children\":[[\"$\",\"header\",null,{\"className\":\"flex items-center gap-3\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-shrub size-11 text-primary\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"eqv9mc\",{\"d\":\"M12 22v-7l-2-2\"}],[\"$\",\"path\",\"ubcgy\",{\"d\":\"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z\"}],[\"$\",\"path\",\"847xa2\",{\"d\":\"m14 14-2 2\"}],\"$undefined\"]}],[\"$\",\"div\",null,{\"className\":\"flex flex-col\",\"children\":[[\"$\",\"h1\",null,{\"className\":\"text-2xl font-bold\",\"children\":\"Envin\"}],[\"$\",\"p\",null,{\"className\":\"text-sm text-muted-foreground\",\"children\":\"Manage environment variables for your project. Validate and set them up in seconds.\"}]]}]]}],[\"$\",\"main\",null,{\"className\":\"flex flex-col gap-4 min-h-0 h-full\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"e:I[4780,[],\"IconMark\"]\n7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Envin\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Framework-agnostic, type-safe tool to validate and preview your environment variables—powered by your favorite schema validator.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"24x24\"}],[\"$\",\"$Le\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
@@ -10,7 +10,7 @@ d:I[1256,[],""]
10
10
  :HL["/_next/static/media/569ce4b8f30dc480-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
11
11
  :HL["/_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
12
12
  :HL["/_next/static/css/c61a81451691d564.css","style"]
13
- 0:{"P":null,"b":"jkZyLIxdpFajAQRvv0QeK","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c61a81451691d564.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__variable_5cfdac __variable_9a8899 antialiased","children":["$","div",null,{"className":"flex flex-col h-full gap-4 py-6 px-8","children":[["$","header",null,{"className":"flex items-center gap-3","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-shrub size-11 text-primary","aria-hidden":"true","children":[["$","path","eqv9mc",{"d":"M12 22v-7l-2-2"}],["$","path","ubcgy",{"d":"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z"}],["$","path","847xa2",{"d":"m14 14-2 2"}],"$undefined"]}],["$","div",null,{"className":"flex flex-col","children":[["$","h1",null,{"className":"text-2xl font-bold","children":"Envin"}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Manage environment variables for your project. Validate and set them up in seconds."}]]}]]}],["$","main",null,{"className":"flex flex-col gap-4 min-h-0 h-full","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$L5",["$","$L6",null,{"promise":"$@7"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L8",null,{"children":"$L9"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$La",null,{"children":["$","div",null,{"hidden":true,"children":["$","$b",null,{"fallback":null,"children":"$Lc"}]}]}]]}],false]],"m":"$undefined","G":["$d",[]],"s":false,"S":true}
13
+ 0:{"P":null,"b":"X66rhTPIVQEL29BISHziC","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c61a81451691d564.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__variable_5cfdac __variable_9a8899 antialiased","children":["$","div",null,{"className":"flex flex-col h-full gap-4 py-6 px-8","children":[["$","header",null,{"className":"flex items-center gap-3","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-shrub size-11 text-primary","aria-hidden":"true","children":[["$","path","eqv9mc",{"d":"M12 22v-7l-2-2"}],["$","path","ubcgy",{"d":"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z"}],["$","path","847xa2",{"d":"m14 14-2 2"}],"$undefined"]}],["$","div",null,{"className":"flex flex-col","children":[["$","h1",null,{"className":"text-2xl font-bold","children":"Envin"}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Manage environment variables for your project. Validate and set them up in seconds."}]]}]]}],["$","main",null,{"className":"flex flex-col gap-4 min-h-0 h-full","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$L5",["$","$L6",null,{"promise":"$@7"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L8",null,{"children":"$L9"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$La",null,{"children":["$","div",null,{"hidden":true,"children":["$","$b",null,{"fallback":null,"children":"$Lc"}]}]}]]}],false]],"m":"$undefined","G":["$d",[]],"s":false,"S":true}
14
14
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
15
15
  5:null
16
16
  e:I[4780,[],"IconMark"]