Skip to content

v1.0.1

Compare
Choose a tag to compare
@RedCrafter07 RedCrafter07 released this 11 Aug 13:38
· 11 commits to main since this release

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.