isographlabs / isograph

The UI framework for teams that move fast — without breaking things.
MIT License
202 stars 9 forks source link

chore: lets use `pnpm` #1

Closed maraisr closed 1 year ago

maraisr commented 1 year ago

This should speed up our installs by like a super lot. And given that all workspace deps are linked by default, if you rebuild in one package — it'll reflect automatically in others.

Does this through a symlink.

Install:

pnpm install

Compile:

pnpm -r compile
#     ^ recursively find all `compile` scripts and run them

Later when we get to versioning, we will use something like changesets to automate this for us.

rbalicki2 commented 1 year ago

Awesome, love it, thanks for doing this!!!