Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions changelog/cli/0.8.2.md

This file was deleted.

10 changes: 0 additions & 10 deletions changelog/cli/0.8.3.md

This file was deleted.

9 changes: 0 additions & 9 deletions changelog/cli/0.8.4.md

This file was deleted.

10 changes: 7 additions & 3 deletions changelog/cli/0.8.5.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
---
package: "@webjsdev/cli"
version: 0.8.5
date: 2026-05-22T19:02:29+05:30
date: 2026-05-22T19:59:14+05:30
commit_count: 1
---
## Fixes
## Features

- **scaffold's next-steps banner now points at `npx webjsdev ui ...` instead of the broken `npx webjs ui ...`** The bare `webjs` npm name is owned by an unrelated package, so `npx webjs <cmd>` would fetch THAT package rather than ours when run outside a scaffolded project. Switched both banner lines (the api-template hint and the non-api Optional line) to `npx webjsdev <cmd>`, our unscoped CLI alias. Behaviour matches `@webjsdev/cli` exactly via npx's single-bin fallback, with no scope to type.
- **npx-first scaffold UX (create-webjs-app, wjs alias, auto-install)** ([#72](https://github.com/webjsdev/webjs/pull/72)) [`4f13870`](https://github.com/webjsdev/webjs/commit/4f13870)
* feat(cli): auto-install dependencies after webjs create

`webjs create <name>` now runs `<pm> install` inside the new directory
by default. Pass `--no-install` to opt out and get the prior behaviour