Skip to content

refactor: move source of truth from nuxi to @nuxt/cli#1385

Merged
danielroe merged 1 commit into
mainfrom
refactor/org
Jul 25, 2026
Merged

refactor: move source of truth from nuxi to @nuxt/cli#1385
danielroe merged 1 commit into
mainfrom
refactor/org

Conversation

@danielroe

Copy link
Copy Markdown
Member

🔗 Linked issue

📚 Description

we had a bit of a strange setup - nuxi inlines everything whereas @nuxt/cli has a proper dep tree... but all the source was located in nuxi/.

this way, nuxt/cli is the source of truth and nuxi is just a rebundling of it for backwards compatibility

@coderabbitai

coderabbitai Bot commented Jul 25, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@danielroe, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 33 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: d8acf713-6024-4396-bb6d-639e55cf15d1

📥 Commits

Reviewing files that changed from the base of the PR and between 7ec738e and 2f31509.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (98)
  • .github/workflows/release.yml
  • .gitignore
  • eslint.config.js
  • knip.json
  • packages/create-nuxt/src/main.ts
  • packages/create-nuxt/src/run.ts
  • packages/nuxi/package.json
  • packages/nuxi/src/dev/index.ts
  • packages/nuxi/src/main.ts
  • packages/nuxi/src/run.ts
  • packages/nuxt-cli/package.json
  • packages/nuxt-cli/src/commands/_shared.ts
  • packages/nuxt-cli/src/commands/_utils.ts
  • packages/nuxt-cli/src/commands/add-template.ts
  • packages/nuxt-cli/src/commands/analyze.ts
  • packages/nuxt-cli/src/commands/build.ts
  • packages/nuxt-cli/src/commands/cleanup.ts
  • packages/nuxt-cli/src/commands/dev-child.ts
  • packages/nuxt-cli/src/commands/dev.ts
  • packages/nuxt-cli/src/commands/devtools.ts
  • packages/nuxt-cli/src/commands/generate.ts
  • packages/nuxt-cli/src/commands/index.ts
  • packages/nuxt-cli/src/commands/info.ts
  • packages/nuxt-cli/src/commands/init.ts
  • packages/nuxt-cli/src/commands/module/_autocomplete.ts
  • packages/nuxt-cli/src/commands/module/_utils.ts
  • packages/nuxt-cli/src/commands/module/add.ts
  • packages/nuxt-cli/src/commands/module/index.ts
  • packages/nuxt-cli/src/commands/module/remove.ts
  • packages/nuxt-cli/src/commands/module/search.ts
  • packages/nuxt-cli/src/commands/prepare.ts
  • packages/nuxt-cli/src/commands/preview.ts
  • packages/nuxt-cli/src/commands/test.ts
  • packages/nuxt-cli/src/commands/typecheck.ts
  • packages/nuxt-cli/src/commands/upgrade.ts
  • packages/nuxt-cli/src/completions-init.ts
  • packages/nuxt-cli/src/completions.ts
  • packages/nuxt-cli/src/dev/binaries.ts
  • packages/nuxt-cli/src/dev/cert.ts
  • packages/nuxt-cli/src/dev/error.ts
  • packages/nuxt-cli/src/dev/index.ts
  • packages/nuxt-cli/src/dev/listen.ts
  • packages/nuxt-cli/src/dev/pool.ts
  • packages/nuxt-cli/src/dev/tunnel.ts
  • packages/nuxt-cli/src/dev/utils.ts
  • packages/nuxt-cli/src/main.ts
  • packages/nuxt-cli/src/run.ts
  • packages/nuxt-cli/src/utils/ascii.ts
  • packages/nuxt-cli/src/utils/banner.ts
  • packages/nuxt-cli/src/utils/console.ts
  • packages/nuxt-cli/src/utils/engines.ts
  • packages/nuxt-cli/src/utils/env.ts
  • packages/nuxt-cli/src/utils/formatting.ts
  • packages/nuxt-cli/src/utils/fs.ts
  • packages/nuxt-cli/src/utils/kit.ts
  • packages/nuxt-cli/src/utils/lockfile.ts
  • packages/nuxt-cli/src/utils/logger.ts
  • packages/nuxt-cli/src/utils/nuxt.ts
  • packages/nuxt-cli/src/utils/packageManagers.ts
  • packages/nuxt-cli/src/utils/paths.ts
  • packages/nuxt-cli/src/utils/profile.ts
  • packages/nuxt-cli/src/utils/starter-templates.ts
  • packages/nuxt-cli/src/utils/templates/api.ts
  • packages/nuxt-cli/src/utils/templates/app-config.ts
  • packages/nuxt-cli/src/utils/templates/app.ts
  • packages/nuxt-cli/src/utils/templates/component.ts
  • packages/nuxt-cli/src/utils/templates/composable.ts
  • packages/nuxt-cli/src/utils/templates/error.ts
  • packages/nuxt-cli/src/utils/templates/index.ts
  • packages/nuxt-cli/src/utils/templates/layer.ts
  • packages/nuxt-cli/src/utils/templates/layout.ts
  • packages/nuxt-cli/src/utils/templates/middleware.ts
  • packages/nuxt-cli/src/utils/templates/module.ts
  • packages/nuxt-cli/src/utils/templates/names.ts
  • packages/nuxt-cli/src/utils/templates/page.ts
  • packages/nuxt-cli/src/utils/templates/plugin.ts
  • packages/nuxt-cli/src/utils/templates/server-middleware.ts
  • packages/nuxt-cli/src/utils/templates/server-plugin.ts
  • packages/nuxt-cli/src/utils/templates/server-route.ts
  • packages/nuxt-cli/src/utils/templates/server-util.ts
  • packages/nuxt-cli/src/utils/versions.ts
  • packages/nuxt-cli/test/bench/dev.bench.ts
  • packages/nuxt-cli/test/e2e/commands.spec.ts
  • packages/nuxt-cli/test/unit/commands/_utils.spec.ts
  • packages/nuxt-cli/test/unit/commands/add-backwards-compat.spec.ts
  • packages/nuxt-cli/test/unit/commands/add.spec.ts
  • packages/nuxt-cli/test/unit/commands/init.spec.ts
  • packages/nuxt-cli/test/unit/commands/module/_autocomplete.spec.ts
  • packages/nuxt-cli/test/unit/commands/module/_utils.spec.ts
  • packages/nuxt-cli/test/unit/commands/module/add.spec.ts
  • packages/nuxt-cli/test/unit/commands/module/remove.spec.ts
  • packages/nuxt-cli/test/unit/dev-hmr.spec.ts
  • packages/nuxt-cli/test/unit/file-watcher.spec.ts
  • packages/nuxt-cli/test/unit/lockfile.spec.ts
  • packages/nuxt-cli/test/unit/templates.spec.ts
  • packages/nuxt-cli/test/unit/utils/banner.spec.ts
  • scripts/generate-completions-data.ts
  • scripts/generate-data.ts
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch refactor/org

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@codspeed-hq

codspeed-hq Bot commented Jul 25, 2026

Copy link
Copy Markdown

Merging this PR will not alter performance

✅ 2 untouched benchmarks


Comparing refactor/org (2f31509) with main (7ec738e)

Open in CodSpeed

@pkg-pr-new

pkg-pr-new Bot commented Jul 25, 2026

Copy link
Copy Markdown
  • nuxt-cli-playground

    npm i https://pkg.pr.new/create-nuxt@1385
    
    npm i https://pkg.pr.new/nuxi@1385
    
    npm i https://pkg.pr.new/@nuxt/cli@1385
    

commit: 2f31509

@danielroe
danielroe merged commit a2e7338 into main Jul 25, 2026
20 checks passed
@danielroe
danielroe deleted the refactor/org branch July 25, 2026 07:30
@github-actions github-actions Bot mentioned this pull request Jul 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant