yarn project managment utility
Projecto is a tool that optimizes the workflow around managing multi-package repositories with yarn.
It's a Lerna light ;-)
There's actually very little to it. You have a file system that looks like this:
my-project/
package.json
packages/
package-1/
package.json
package-2/
package.json
install will install & build all packages, finally it links all local packages.
link will link all local packages.
unlink will unlink all local packages.
clean will delete folders in all packages.
task will execute package.json scripts in all packages.
Let's start by installing Projecto globally with npm.
$ npm install --global projectoor
$ yarn global add projectoJust look at the cli help.
$ po --helpor
$ projecto --help