Skip to content

create-enchilada 1.2.0

Latest

Choose a tag to compare

@Sharmaz Sharmaz released this 15 Mar 20:57
· 11 commits to main since this release
3da51e0

Vite 8

Upgraded all Vite-based templates (vanilla-js, react, react-typescript, react-dev, react-dev-typescript) to Vite 8. Replaced the rolldown-vite npm alias with the official vite@^8.0.0 package and migrated from @vitejs/plugin-react-oxc to @vitejs/plugin-react@^6.0.0, which now includes Oxc-based React Refresh natively.

Improved npm discoverability

Updated the package description to better reflect what create-enchilada does and expanded the keywords list with terms like scaffold, boilerplate, starter, template, and create-app. Removed inaccurate keywords (farm, oxlint) and the deprecated preferGlobal field.

Documentation updates

Added an introductory paragraph to the README, and documented the --list / -l CLI option and the . current directory scaffold feature that were missing from the docs.

Fix: terminal cursor after tests

Running npm run test:unit or npm run test:e2e would leave the terminal cursor invisible due to the prompts library hiding it during interactive rendering and Jest's --forceExit preventing cleanup. Fixed by restoring terminal state after tests complete.