Releases: rovelstars/reejs
v0.20.1 - Hotfix + feature patch
v0.20.0 - Huge upgrades for Reejs!
Ree.js v0.20.0
This huge upgrade fills in the void of having no contributions over the last 2 months.
I wasn't free, but here I deliver!
Introducing JSR.io support!
I'll be contributing to their docs for documenting reejs + jsr soon.
Huge Bug Fixes!!
- Ree.js previously couldn't install and run dependencies on a new project if you had an existing project made by Reejs. This was due to how caches were saved. Now we fixed them so you can go and create hundreds of projects with reejs without worrying about it breaking!
- Installing dependencies in your created project would fail, due to incomplete downloaded files. It works fine now!
Cache "lockfile" has been converted to binary from previously plain json.
This helps with lowering the storage costs. We will soon apply the similar feature to other cache mechanisms if we find it useful ;)
Thanks for using Ree.js ❤️ it means a lot to me!
( Btw I got a new pc: i7-14700k, so I might need to work on multi-core support soon ig?)
v0.17.0
Adds quality of life changes & other fixes
What's Changed
- Fix Hono link typo by @KonradLinkowski in #27
New Contributors
- @KonradLinkowski made their first contribution in #27
Full Changelog: v0.16.3...v0.17
v0.16.3 - `reejs init` has been ree-worked on!
Running reejs init will guide you through the interactive prompt, and help you create a new project w/ reejs, for reejs, faster!
v0.16.2 - Packit in dev mode is more than 2x faster!
Previously I've been getting this:
With the latest update, I will now get this:
Notice that this performance is on the starter code for react
feature enabled, and runs on my pentium g620 (12yr old pc). You will see even better performance on your desktops. For me, reejs runs instantly now.
P.S.: htmx still isnt supported yet - hence the experimental flag. dont expect it to work for you rn.
v0.16.1 - Fixes to create reejs app, reejs i and general performance improvements
v0.16.0 - fixes to create-reejs app.
Adds additional imports with the newly updated packit code, which breaks creating any app.
v0.15.5 - Deno support for `reejs i`
Just a small fix for reejs based projects.
v0.15.4 - Fixes to Deno Installation
One more step to Deno support - you can now install reejs via deno:
deno install -A "npm:[email protected]"
Full Changelog: v0.15.3...v0.15.4
v0.15.0 - Experimental Deno & Typescript definitions over URL Imports Support
With the advent of v0.15.0, Reejs is now one step more closer to production ready!
Deno deploy support is experimental, and some simple apps can now be deployed to deno deploy!
To install dependencies for deno target, please export an env in your shell or append this before reejs i
: REEJS_UA="Deno/1.36"
Once dependencies are installed, run reejs packit deno
and once completed, move to dist
folder and run deno run -A ./index.js
.
Won't suggest using dev mode, as Deno messes node_modules
folder and ultimately mess package.json
itself. Production build creates a new folder dist
, where the package.json
is not copied over, thus fixing the problem.
Full Changelog: v0.14.1...v0.15.0