Skip to content

Version Packages (alpha)#1489

Open
arkenv-bot[bot] wants to merge 2 commits into
v1from
changeset-release/v1
Open

Version Packages (alpha)#1489
arkenv-bot[bot] wants to merge 2 commits into
v1from
changeset-release/v1

Conversation

@arkenv-bot

@arkenv-bot arkenv-bot Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release 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 v1, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

v1 is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on v1.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

arkenv@1.0.0-alpha.11

Patch Changes

  • Split --help options into Global and init sections #1487 f86887c @yamcodes

    List shared flags under Global options and scaffolding flags under init options, matching the multi-command /docs/cli taxonomy.

    npx arkenv@alpha --help
    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 ...
    

@arkenv/build@0.0.2-alpha.2

Patch Changes

  • Make missing-schema errors short and actionable across hosts #1495 3785c6b @yamcodes

    When a host cannot find an env schema, throw a consistent message that names the expected path / schemaPath and points to npx arkenv@latest init, without embedding a starter env.ts module.

    Example:

    [ArkEnv] Could not find schema file at src/env.ts or env.ts. Please specify 'schemaPath' in ArkEnv options (or run `npx arkenv@latest init`).
    
  • Make env/internal/shared.ts optional in strict layout #1505 9bfe1c4 @yamcodes

    Strict layout now works with just client.ts and server.ts. Omit internal/shared.ts when you have nothing to share — shared keys are treated as empty.

    // env/client.ts + env/server.ts alone is enough
    export default withArkEnv(nextConfig, {
      layout: "strict",
    });

    The CLI still scaffolds shared.ts by default for convenience.

@arkenv/bun-plugin@1.0.0-alpha.8

Patch Changes

  • Make missing-schema errors short and actionable across hosts #1495 3785c6b @yamcodes

    When a host cannot find an env schema, throw a consistent message that names the expected path / schemaPath and points to npx arkenv@latest init, without embedding a starter env.ts module.

    Example:

    [ArkEnv] Could not find schema file at src/env.ts or env.ts. Please specify 'schemaPath' in ArkEnv options (or run `npx arkenv@latest init`).
    
Updated 1 dependency

3785c6b 9bfe1c4

  • @arkenv/build@0.0.2-alpha.2
## @arkenv/nextjs@1.0.0-alpha.9

Patch Changes

  • Align missing-schema errors with short, actionable host guidance #1488 9d5bdbb @yamcodes

    Point missing-schema errors at checked paths / schemaPath and arkenv init, matching the Bun plugin style, without embedding starter env.ts modules.

  • Make missing-schema errors short and actionable across hosts #1495 3785c6b @yamcodes

    When a host cannot find an env schema, throw a consistent message that names the expected path / schemaPath and points to npx arkenv@latest init, without embedding a starter env.ts module.

    Example:

    [ArkEnv] Could not find schema file at src/env.ts or env.ts. Please specify 'schemaPath' in ArkEnv options (or run `npx arkenv@latest init`).
    
  • Make env/internal/shared.ts optional in strict layout #1505 9bfe1c4 @yamcodes

    Strict layout now works with just client.ts and server.ts. Omit internal/shared.ts when you have nothing to share — shared keys are treated as empty.

    // env/client.ts + env/server.ts alone is enough
    export default withArkEnv(nextConfig, {
      layout: "strict",
    });

    The CLI still scaffolds shared.ts by default for convenience.

Updated 1 dependency

3785c6b 9bfe1c4

  • @arkenv/build@0.0.2-alpha.2
## @arkenv/nuxt@1.0.0-alpha.11

Patch Changes

  • Align missing-schema errors with short, actionable host guidance #1488 9d5bdbb @yamcodes

    Point missing-schema errors at checked paths / schemaPath and arkenv init, matching the Bun plugin style, without embedding starter env.ts modules.

  • Make missing-schema errors short and actionable across hosts #1495 3785c6b @yamcodes

    When a host cannot find an env schema, throw a consistent message that names the expected path / schemaPath and points to npx arkenv@latest init, without embedding a starter env.ts module.

    Example:

    [ArkEnv] Could not find schema file at src/env.ts or env.ts. Please specify 'schemaPath' in ArkEnv options (or run `npx arkenv@latest init`).
    
  • Make env/internal/shared.ts optional in strict layout #1505 9bfe1c4 @yamcodes

    Strict layout now works with just client.ts and server.ts. Omit internal/shared.ts when you have nothing to share — shared keys are treated as empty.

    // env/client.ts + env/server.ts alone is enough
    export default withArkEnv(nextConfig, {
      layout: "strict",
    });

    The CLI still scaffolds shared.ts by default for convenience.

Updated 1 dependency

3785c6b 9bfe1c4

  • @arkenv/build@0.0.2-alpha.2
## @arkenv/vite-plugin@1.0.0-alpha.8

Patch Changes

  • Align missing-schema errors with short, actionable host guidance #1488 9d5bdbb @yamcodes

    Point missing-schema errors at checked paths / schemaPath and arkenv init, matching the Bun plugin style, without embedding starter env.ts modules.

  • Make missing-schema errors short and actionable across hosts #1495 3785c6b @yamcodes

    When a host cannot find an env schema, throw a consistent message that names the expected path / schemaPath and points to npx arkenv@latest init, without embedding a starter env.ts module.

    Example:

    [ArkEnv] Could not find schema file at src/env.ts or env.ts. Please specify 'schemaPath' in ArkEnv options (or run `npx arkenv@latest init`).
    
Updated 1 dependency

3785c6b 9bfe1c4

  • @arkenv/build@0.0.2-alpha.2

@github-actions github-actions Bot added docs Adds or changes documentation, or acts as documentation in and of itself arkenv Changes to the `arkenv` npm package. labels Jul 24, 2026
@arkenv-bot
arkenv-bot Bot force-pushed the changeset-release/v1 branch from 2c8aa71 to 54091f9 Compare July 24, 2026 10:14
@github-actions github-actions Bot added @arkenv/vite-plugin Issues or Pull Requests involving the Vite plugin for ArkEnv @arkenv/nextjs Issues or Pull Requests involving the Next.js integration for ArkEnv @arkenv/nuxt Issues or Pull Requests involving the Nuxt integration for ArkEnv labels Jul 24, 2026
@pkg-pr-new

pkg-pr-new Bot commented Jul 24, 2026

Copy link
Copy Markdown

Open in StackBlitz

arkenv

npm i https://pkg.pr.new/arkenv@1489

@arkenv/build

npm i https://pkg.pr.new/@arkenv/build@1489

@arkenv/bun-plugin

npm i https://pkg.pr.new/@arkenv/bun-plugin@1489

@arkenv/core

npm i https://pkg.pr.new/@arkenv/core@1489

@arkenv/fumadocs-ui

npm i https://pkg.pr.new/@arkenv/fumadocs-ui@1489

@arkenv/nextjs

npm i https://pkg.pr.new/@arkenv/nextjs@1489

@arkenv/nuxt

npm i https://pkg.pr.new/@arkenv/nuxt@1489

@arkenv/standard

npm i https://pkg.pr.new/@arkenv/standard@1489

@arkenv/vite-plugin

npm i https://pkg.pr.new/@arkenv/vite-plugin@1489

commit: 151d3c3

@arkenv-bot
arkenv-bot Bot force-pushed the changeset-release/v1 branch 5 times, most recently from ae67acf to c1c2dba Compare July 25, 2026 13:17
@github-actions github-actions Bot added the @arkenv/bun-plugin Issues or Pull Requests involving the Bun plugin for ArkEnv label Jul 25, 2026
@arkenv-bot
arkenv-bot Bot force-pushed the changeset-release/v1 branch from ad3a065 to 975b357 Compare July 25, 2026 17:48
@arkenv-bot
arkenv-bot Bot force-pushed the changeset-release/v1 branch from f9225fe to bfc4582 Compare July 25, 2026 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

@arkenv/bun-plugin Issues or Pull Requests involving the Bun plugin for ArkEnv @arkenv/nextjs Issues or Pull Requests involving the Next.js integration for ArkEnv @arkenv/nuxt Issues or Pull Requests involving the Nuxt integration for ArkEnv @arkenv/vite-plugin Issues or Pull Requests involving the Vite plugin for ArkEnv arkenv Changes to the `arkenv` npm package. docs Adds or changes documentation, or acts as documentation in and of itself

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants