Add create-arkenv package for pnpm create arkenv#1133
Conversation
|
|
Pullfrog stalled The agent stopped emitting events for 301s and was killed by the activity-timeout watchdog. 164 events were processed before the failure. Recent agent stderr
|
arkenv
@arkenv/bun-plugin
@arkenv/cli
create-arkenv
@arkenv/fumadocs-ui
@arkenv/nextjs
@arkenv/vite-plugin
commit: |
|
The latest updates on your projects. Learn more about Vercel for GitHub. Warning Deployment cooldown active@autofix-ci[bot] has triggered deployments too frequently. Please wait 19 minutes and 0 seconds before the next automated deployment. ⌛ How to resolve this issue?After the wait time has elapsed, a deployment can be triggered by pushing new commits to this PR or by re-running the workflow. We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?We enforce rate limits to ensure stability and fair usage of resources for all contributors. |
📦 Bundle Size Report✅ All size limits passed! |
|
still not sure we need this |
create-arkenv package for pnpm create arkenvcreate-arkenv package for pnpm create arkenv

Closes #1115
This PR adds a new
create-arkenvpackage that acts as a thin proxy forpnpm create arkenv(and equivalents for npm/yarn). When users run:It forwards all arguments to
@arkenv/cli init, so the full command becomes:What changed
packages/create-arkenv/package.json— published ascreate-arkenvon npm, with acreate-arkenvbinsrc/index.ts— resolves@arkenv/cliand spawnsarkenv initwith inherited stdiosrc/smoke.test.ts— smoke tests verifying--helpand argument forwardingtsconfig.json,tsdown.config.ts,vitest.config.ts— standard build/test setup matching other packagesHow it works
The proxy uses
require.resolve("@arkenv/cli")to find the CLI binary andspawnSyncwithstdio: "inherit"to preserve the interactive prompt experience.Testing
pnpm vitest runinpackages/create-arkenv/passes (3/3 smoke tests)pnpm vitest runinpackages/cli/passes (218/218 tests) — no regressionspnpm run typecheckpassesKimi K2| 𝕏