From 2997e84239e5f2d35acb26e6dd82d5f1bf253231 Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 6 Sep 2025 17:42:46 +0500 Subject: [PATCH 1/5] Update documentation links to point to the new ArkEnv site at arkenv.js.org --- README.md | 4 ++-- apps/docs/README.md | 2 +- apps/docs/content/docs/README.md | 2 +- examples/basic/README.md | 2 +- examples/with-bun/README.md | 2 +- packages/arkenv/package.json | 2 +- packages/vite-plugin/README.md | 2 +- packages/vite-plugin/package.json | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 25ad02187..a4651993a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + arkenv - Typesafe Environment Variables
@@ -75,7 +75,7 @@ console.log(env.NODE_ENV); // (property) NODE_ENV: "development" | "production" ## Documentation -For detailed documentation and examples, please visit our [documentation site](https://arkenv.vercel.app). +For detailed documentation and examples, please visit our [documentation site](https://arkenv.js.org). ## Plugins diff --git a/apps/docs/README.md b/apps/docs/README.md index 4e9652ee7..9f2a71fee 100644 --- a/apps/docs/README.md +++ b/apps/docs/README.md @@ -2,4 +2,4 @@ Welcome to the ArkEnv documentation site! -:rocket: We are live on [arkenv.vercel.app](https://arkenv.vercel.app). \ No newline at end of file +:rocket: We are live on [arkenv.js.org](https://arkenv.js.org). \ No newline at end of file diff --git a/apps/docs/content/docs/README.md b/apps/docs/content/docs/README.md index f97ea1496..9e1be27b5 100644 --- a/apps/docs/content/docs/README.md +++ b/apps/docs/content/docs/README.md @@ -2,4 +2,4 @@ Welcome to the ArkEnv documentation! -You can also view the documentation on our [docsite](https://arkenv.vercel.app). \ No newline at end of file +You can also view the documentation on our [docsite](https://arkenv.js.org). \ No newline at end of file diff --git a/examples/basic/README.md b/examples/basic/README.md index 36903c130..37b0db86a 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -48,7 +48,7 @@ With the development server running (if it isn't - just run `npm run dev`), let' ArkEnvError: Errors found while validating environment variables MY_ENV_VAR must be a string (was missing) ``` - This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.vercel.app/docs/guides/environment-configuration#using-env-files). + This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.js.org/docs/guides/environment-configuration#using-env-files). 3. #### Copy the `.env.example` file to `.env` diff --git a/examples/with-bun/README.md b/examples/with-bun/README.md index 58d9fb74b..cd7a19784 100644 --- a/examples/with-bun/README.md +++ b/examples/with-bun/README.md @@ -55,7 +55,7 @@ With the development server running (if it isn't - just run `bun dev`), let's se ArkEnvError: Errors found while validating environment variables MY_ENV_VAR must be a string (was missing) ``` - This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.vercel.app/docs/guides/environment-configuration#using-env-files). + This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.js.org/docs/guides/environment-configuration#using-env-files). 3. #### Copy the `.env.example` file to `.env` diff --git a/packages/arkenv/package.json b/packages/arkenv/package.json index d413d9064..180217621 100644 --- a/packages/arkenv/package.json +++ b/packages/arkenv/package.json @@ -31,7 +31,7 @@ "validation" ], "license": "MIT", - "homepage": "https://arkenv.vercel.app", + "homepage": "https://arkenv.js.org", "repository": { "type": "git", "url": "git+https://github.com/yamcodes/arkenv.git" diff --git a/packages/vite-plugin/README.md b/packages/vite-plugin/README.md index 0e2c1e670..36098c7aa 100644 --- a/packages/vite-plugin/README.md +++ b/packages/vite-plugin/README.md @@ -80,7 +80,7 @@ See the [with-vite-react-ts example](https://github.com/yamcodes/arkenv/tree/mai ## Documentation -For detailed documentation and more examples, visit the [ArkEnv documentation site](https://arkenv.vercel.app). +For detailed documentation and more examples, visit the [ArkEnv documentation site](https://arkenv.js.org). ## Related diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json index 9a777e474..2b41a70dc 100644 --- a/packages/vite-plugin/package.json +++ b/packages/vite-plugin/package.json @@ -32,7 +32,7 @@ "files": [ "dist" ], - "homepage": "https://arkenv.vercel.app", + "homepage": "https://arkenv.js.org", "keywords": [ "arktype", "arkenv", From efc4376fa33847415ece74d3e667fd5ca210af7e Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 6 Sep 2025 18:54:57 +0500 Subject: [PATCH 2/5] Update README.md --- examples/basic/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/README.md b/examples/basic/README.md index 37b0db86a..c87280f7f 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -74,5 +74,5 @@ With the development server running (if it isn't - just run `npm run dev`), let' ### Next steps -- [ArkEnv docs](https://github.com/yamcodes/arkenv) +- [ArkEnv docs](https://arkenv.js.org/) - [ArkType docs](https://arktype.io/) From 23b9ac2eb74d9b72fcfef494fdf808cd419c9e69 Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 6 Sep 2025 18:55:24 +0500 Subject: [PATCH 3/5] Update README.md --- examples/with-bun/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-bun/README.md b/examples/with-bun/README.md index cd7a19784..98ed323b5 100644 --- a/examples/with-bun/README.md +++ b/examples/with-bun/README.md @@ -88,6 +88,6 @@ With the development server running (if it isn't - just run `bun dev`), let's se ### Next steps -- [ArkEnv docs](https://github.com/yamcodes/arkenv) +- [ArkEnv docs](https://arkenv.js.org/) - [ArkType docs](https://arktype.io/) - [Bun docs](https://bun.sh) From 510fe4d854584f791a3414df05410dfdabe9f3b7 Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 6 Sep 2025 22:12:23 +0500 Subject: [PATCH 4/5] Update workspace configuration and documentation links to reflect new site URL at arkenv.js.org - Changed the workspace name for the www app to "www (arkenv.js.org)". - Updated documentation links in README files to point to the new site URL: https://arkenv.js.org/docs. These changes ensure consistency across the project following the recent site migration. --- apps/www/content/docs/README.md | 2 +- arkenv.code-workspace | 70 ++++++++++++++++++--------- examples/with-vite-react-ts/README.md | 2 +- 3 files changed, 49 insertions(+), 25 deletions(-) diff --git a/apps/www/content/docs/README.md b/apps/www/content/docs/README.md index d1c200688..68278b04f 100644 --- a/apps/www/content/docs/README.md +++ b/apps/www/content/docs/README.md @@ -2,4 +2,4 @@ Welcome to the ArkEnv documentation! -You can also view the documentation on our site: https://arkenv.vercel.app/docs. +You can also view the documentation on our site: https://arkenv.js.org/docs. diff --git a/arkenv.code-workspace b/arkenv.code-workspace index af7ffbe91..b7031a3b2 100644 --- a/arkenv.code-workspace +++ b/arkenv.code-workspace @@ -22,27 +22,51 @@ }, { "path": "apps/www", - "name": " www (arkenv.vercel.app)" - }, - { - "path": "examples", - "name": "examples" - }, - { - "path": "examples/basic", - "name": " basic" - }, - { - "path": "examples/with-bun", - "name": " with-bun" - }, - { - "path": "examples/with-vite-react-ts", - "name": " with-vite-react-ts" - }, - { - "path": "apps/www/content/docs", - "name": "docs" + "name": " www (arkenv.js.org)" + + } + + + + "path": "examples" + + "name": "examples + + } + + + + "path": "examples/basic" + + "name": " basic + + } + + + + "path": "examples/with-bun" + + "name": " with-bun + + } + + + + "path": "examples/with-vite-react-ts" + + "name": " with-vite-react-ts + } - ] -} + + + + "path": "apps/www/content/docs" + + "name": "docs + + + + + + + diff --git a/examples/with-vite-react-ts/README.md b/examples/with-vite-react-ts/README.md index e5ce9c0b1..fea32be58 100644 --- a/examples/with-vite-react-ts/README.md +++ b/examples/with-vite-react-ts/README.md @@ -123,6 +123,6 @@ arkenv({ ### Next steps -- [ArkEnv docs](https://arkenv.vercel.app/docs) +- [ArkEnv docs](https://arkenv.js.org/docs) - [ArkType docs](https://arktype.io/) - [Vite Environment Variables guide](https://vitejs.dev/guide/env-and-mode.html) From d268e1f35d25b72ff6f38275e5c19d9cd8c40d96 Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 6 Sep 2025 22:14:21 +0500 Subject: [PATCH 5/5] Refactor workspace configuration to streamline example entries - Consolidated example entries in the workspace configuration for clarity. - Ensured consistent formatting and structure across all example paths. These changes enhance the organization of the workspace, making it easier to navigate and manage examples. --- arkenv.code-workspace | 68 ++++++++++++++----------------------------- 1 file changed, 22 insertions(+), 46 deletions(-) diff --git a/arkenv.code-workspace b/arkenv.code-workspace index b7031a3b2..f3c300bc9 100644 --- a/arkenv.code-workspace +++ b/arkenv.code-workspace @@ -23,50 +23,26 @@ { "path": "apps/www", "name": " www (arkenv.js.org)" - - } - - - - "path": "examples" - - "name": "examples - - } - - - - "path": "examples/basic" - - "name": " basic - - } - - - - "path": "examples/with-bun" - - "name": " with-bun - - } - - - - "path": "examples/with-vite-react-ts" - - "name": " with-vite-react-ts - + }, + { + "path": "examples", + "name": "examples" + }, + { + "path": "examples/basic", + "name": " basic" + }, + { + "path": "examples/with-bun", + "name": " with-bun" + }, + { + "path": "examples/with-vite-react-ts", + "name": " with-vite-react-ts" + }, + { + "path": "apps/www/content/docs", + "name": "docs" } - - - - "path": "apps/www/content/docs" - - "name": "docs - - - - - - - + ] +}