Skip to content

Releases: RedCrafter07/retmod

v1.0.2

12 Aug 13:22
Compare
Choose a tag to compare

Retmod v1.0.2

This update has some cool updates again :)

  • Templates 🎉
    And some other stuff. Enjoy! ^^

Full Changelog: v1.0.1...v1.0.2

v1.0.1

11 Aug 13:38
Compare
Choose a tag to compare

Retmod v1.0.1

Some stuff to optimize retmod developer experience ^^

Here are the main ones:

  • Switch to pnpm (yarn before)
  • Some CLI optimizations (checking if directory exists before creating, etc)
  • Clean up scripts (remove docker & install script)
  • Add a router and a wrapper by default (just cool yk)
    And many more!

Full Changelog: https://github.com/RedCrafter07/retmod/compare/5a81973..v1.0.1

Hope you enjoy :)

Some further notes

Why did you switch to pnpm?

It's faster and easier to use.

Why did you remove the docker script?

We removed it, because it's unnecessary, as the docker file includes it's custom script now and running two scripts manually isn't hard to do.

Why did you remove the normal install script?

PNPM includes a recursive tag (-r) which can be used to install everything. Example:

pnpm -r install
# or
pnpm -r i

However, a i-all script is included for convenience.