Skip to content

Commit af3e2fa

Browse files
Version Packages (#1486)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to dev, this PR will be updated. # Releases ## @arkenv/bun-plugin@0.1.12 ### Patch Changes - #### Align Bun missing-schema errors with other hosts _[`#1482`](#1482) [`9e37eaa`](9e37eaa) [@yamcodes](https://github.com/yamcodes)_ Use the same short, actionable missing-schema style as Next, Nuxt, and Vite: list the checked paths and point to `arkenv init`, without embedding a starter `env.ts` module in the thrown error. ## @arkenv/cli@0.5.4 ### Patch Changes - #### Split `--help` options into Global and `init` sections _[`#1483`](#1483) [`a05a46f`](a05a46f) [@yamcodes](https://github.com/yamcodes)_ List shared flags under **Global options** and scaffolding flags under **init options**, matching the multi-command `/docs/cli` taxonomy. ```bash npx @arkenv/cli@latest --help ``` ```text Usage: arkenv init [project-name] ... arkenv add host [provider] ... Global options: --yes, -y Skip prompts and use defaults ... --quiet, -q Quiet mode ... --json, -j Output structured JSON ... --agent Enable non-interactive, machine-readable mode ... --help, -h Show this help message init options: --example Specify an example name ... --force, -f Bypass checks and force scaffolding --no-codegen Disable automatic env.gen.ts code generation ... --host-preset, -H <preset> Specify a hosting provider preset ... ``` Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a05a46f commit af3e2fa

6 files changed

Lines changed: 41 additions & 39 deletions

File tree

.changeset/align-bun-missing-schema-errors.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/split-help-global-init-options.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

packages/bun-plugin/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @arkenv/bun-plugin
22

3+
## 0.1.12
4+
5+
### Patch Changes
6+
7+
- #### Align Bun missing-schema errors with other hosts _[`#1482`](https://github.com/yamcodes/arkenv/pull/1482) [`9e37eaa`](https://github.com/yamcodes/arkenv/commit/9e37eaaf7db8916c282c00e205511df11cd987ee) [@yamcodes](https://github.com/yamcodes)_
8+
9+
Use the same short, actionable missing-schema style as Next, Nuxt, and Vite: list the checked paths and point to `arkenv init`, without embedding a starter `env.ts` module in the thrown error.
10+
311
## 0.1.11
412

513
### Patch Changes

packages/bun-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkenv/bun-plugin",
3-
"version": "0.1.11",
3+
"version": "0.1.12",
44
"author": "Yam Borodetsky <yam@yam.codes>",
55
"repository": {
66
"type": "git",

packages/cli/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# @arkenv/cli
22

3+
## 0.5.4
4+
5+
### Patch Changes
6+
7+
- #### Split `--help` options into Global and `init` sections _[`#1483`](https://github.com/yamcodes/arkenv/pull/1483) [`a05a46f`](https://github.com/yamcodes/arkenv/commit/a05a46fd8b41cc9005597082fa2cb560c688e183) [@yamcodes](https://github.com/yamcodes)_
8+
9+
List shared flags under **Global options** and scaffolding flags under **init options**, matching the multi-command `/docs/cli` taxonomy.
10+
11+
```bash
12+
npx @arkenv/cli@latest --help
13+
```
14+
15+
```text
16+
Usage:
17+
arkenv init [project-name] ...
18+
arkenv add host [provider] ...
19+
20+
Global options:
21+
--yes, -y Skip prompts and use defaults ...
22+
--quiet, -q Quiet mode ...
23+
--json, -j Output structured JSON ...
24+
--agent Enable non-interactive, machine-readable mode ...
25+
--help, -h Show this help message
26+
27+
init options:
28+
--example Specify an example name ...
29+
--force, -f Bypass checks and force scaffolding
30+
--no-codegen Disable automatic env.gen.ts code generation ...
31+
--host-preset, -H <preset> Specify a hosting provider preset ...
32+
```
33+
334
## 0.5.3
435

536
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@arkenv/cli",
33
"type": "module",
4-
"version": "0.5.3",
4+
"version": "0.5.4",
55
"description": "Interactive CLI for scaffolding ArkEnv projects",
66
"bin": {
77
"arkenv": "./dist/index.cjs"

0 commit comments

Comments
 (0)