From ee33f060448e1b605f980484b90af795b2ec501b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 06:56:57 +0000 Subject: [PATCH] Version Packages --- .changeset/dry-days-travel.md | 11 ----------- .changeset/full-hounds-hope.md | 7 ------- packages/cli/CHANGELOG.md | 16 ++++++++++++++++ packages/cli/package.json | 2 +- 4 files changed, 17 insertions(+), 19 deletions(-) delete mode 100644 .changeset/dry-days-travel.md delete mode 100644 .changeset/full-hounds-hope.md diff --git a/.changeset/dry-days-travel.md b/.changeset/dry-days-travel.md deleted file mode 100644 index f6a75c9ca..000000000 --- a/.changeset/dry-days-travel.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Generate `env.d.ts` file for plugins - -When installing the Vite plugin or the Bun plugin, a matching `env.d.ts` will be generated if one is not present. - -If one _is_ present, the CLI will offer to append the necessary types to it. - -This allows for typesafety when calling via `process.env` or `import.meta.env`, see: https://arkenv.js.org/docs/vite-plugin/typing-import-meta-env diff --git a/.changeset/full-hounds-hope.md b/.changeset/full-hounds-hope.md deleted file mode 100644 index 6da455dd5..000000000 --- a/.changeset/full-hounds-hope.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Add default values to the initial env keys - -The initial env keys (`NODE_ENV`, `PORT`) now recieve default values so the code runs even if the user didn't set them up in their `.env` file. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 06666ffc2..f3326dd8e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,21 @@ # @arkenv/cli +## 0.0.6 + +### Patch Changes + +- #### Generate `env.d.ts` file for plugins _[`#969`](https://github.com/yamcodes/arkenv/pull/969) [`93389bd`](https://github.com/yamcodes/arkenv/commit/93389bd185e47c1bc62383f666e14afd244128a8) [@yamcodes](https://github.com/yamcodes)_ + + When installing the Vite plugin or the Bun plugin, a matching `env.d.ts` will be generated if one is not present. + + If one _is_ present, the CLI will offer to append the necessary types to it. + + This allows for typesafety when calling via `process.env` or `import.meta.env`, see: https://arkenv.js.org/docs/vite-plugin/typing-import-meta-env + +- #### Add default values to the initial env keys _[`07eed0f`](https://github.com/yamcodes/arkenv/commit/07eed0f8a7288f8e31f5e2e22a6d37648e82b84e) [@yamcodes](https://github.com/yamcodes)_ + + The initial env keys (`NODE_ENV`, `PORT`) now recieve default values so the code runs even if the user didn't set them up in their `.env` file. + ## 0.0.5 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index f91c105af..c086a62f4 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@arkenv/cli", "type": "module", - "version": "0.0.5", + "version": "0.0.6", "description": "Interactive CLI for scaffolding ArkEnv projects", "bin": { "arkenv": "./dist/index.cjs"