Skip to content

Releases: gaureshpai/create-next-quick

Release v2.0.4

23 Apr 08:50

Choose a tag to compare

What's Changed

  • feat: show help for unknown flags and add showHelp function by @gaureshpai in #79

Full Changelog: v2.0.3...v2.0.4

Release v2.0.3

21 Mar 17:04

Choose a tag to compare

What's Changed

  • feat: add rollup build pipeline with minification by @gaureshpai in #73

Full Changelog: v2.0.2...v2.0.3

Release v2.0.2

18 Mar 14:14

Choose a tag to compare

What's Changed

  • chore: fix linting and formatting issues across repository by @gaureshpai in #68
  • fix: implement interactive list selection and fix default value display (#69) by @gaureshpai in #70
  • feat: add help and version flags to CLI by @gaureshpai in #72

Full Changelog: v2.0.1...v2.0.2

Release v2.0.2-0

07 Feb 09:23

Choose a tag to compare

What's Changed

  • chore: fix linting and formatting issues across repository by @gaureshpai in #68
  • fix: implement interactive list selection and fix default value display (#69) by @gaureshpai in #70

Full Changelog: v2.0.1...v2.0.2-0

Release v2.0.1

01 Feb 09:50

Choose a tag to compare

Release v2.0.0

01 Feb 09:36

Choose a tag to compare

What's Changed

  • chore: update package version to 1.0.8 and downgrade mocha dependency by @gaureshpai in #65
  • feat: add interactive mode with comprehensive documentation and test coverage by @gaureshpai in #67

Full Changelog: v1.0.7...v2.0.0

v1.0.7

21 Oct 20:10

Choose a tag to compare

What's Changed

  • [BUG] fix issue #25 - have workflow use correct token by @kamikkels in #27
  • chore: Improve CLI styles and UX by @Shikhar-Shetty in #41
  • fix: resolve welcome action not working for pull requests by @vansh2408 in #45
  • docs: update README to developer-friendly version by @NityaSriDeepakRaj in #33
  • Add CI workflow with automated PR test comments by @Keerthana430 in #49
  • feat: Fixed the Post Test results to comment on the Pull request by @nabeel001 in #55
  • feat: Enhance CLI prompts and improve Shadcn UI setup workflow by @gaureshpai in #59
  • fix: handle default project name and update test timing and inputs by @gaureshpai in #60
  • chore(ci): enhance welcome workflow for new contributors by @gaureshpai in #61
  • feat: add Node.js version check, improve error handling, and enhance setup scripts by @gaureshpai in #62
  • chore: update CI node versions and add comprehensive project documentation site by @gaureshpai in #63

New Contributors

Full Changelog: v1.0.6...v1.0.7

v1.0.6

01 Oct 22:37
d81e92f

Choose a tag to compare

What's Changed

  • feat: Add support for additional package managers and improve command execution logging by @gaureshpai in #12
  • fix: Update project name prompt to ensure current directory is empty when using '.' by @gaureshpai in #13
  • feat: make shadcn default to yes by @gaureshpai in #14
  • feat: improve project creation and shadcn init by @gaureshpai in #15
  • feat: allow app name as CLI argument by @gaureshpai in #17
  • feat: Enhance CI/CD and dynamic test generation by @gaureshpai in #19

New Contributors

Full Changelog: v1.0.4...v1.0.6

v1.0.4

11 Sep 17:19

Choose a tag to compare

feat: Add package manager selection and improve user experience
This commit introduces several new features and bug fixes to improve the user experience of create-next-quick.

  • feat: Add a prompt to select a package manager (npm, yarn, or pnpm), with pnpm as the default.
  • fix: Add validation to the project name prompt to enforce lowercase names. This prevents errors when running create-next-app.
  • fix: Add the --yes flag to the npx command to bypass the installation confirmation prompt.
  • chore: Update the README.md to reflect the new package manager option.
  • Closes #7
  • feat: version v1.0.4 release

v.1.0.3

26 Aug 12:07

Choose a tag to compare

New Features
Added ORM selection during project setup allowing users to choose between Prisma, Drizzle, or no ORM.

Prisma integration includes installing prisma and @prisma/client, running prisma init, and creating lib/prisma.ts for global Prisma client setup.

Drizzle integration includes installing drizzle-orm, @vercel/postgres, and drizzle-kit, along with generating drizzle.config.ts and a default example schema.

Automatic creation of .env file with a placeholder DATABASE_URL when an ORM is selected.

Improvements
Fine-tuned various other setup flow issues to enhance user experience.

Bug Fixes
Addressed minor bugs reported in previous versions for smoother operation.