Pluto Multi App Manager
npm install @plutovr/multi-app-manager``sh`
npm i pluto-mae
> This will build the project and create a TGZ archive file, which is what you will use to include Multi App Manager in your local project
2. Copy the path to the TGZ file that was just created (right-click on the file and select "Copy Path")$3
1. In your own project, install the local version by running npm i "
> For example:
`sh
npm i "C:\Users\\pluto-multi-app-manager\plutovr-multi-app-manager-0.8.2.tgz"
`
> If you already have a remote version of @plutovr/multi-app-manager installed, this will replace it with the local version.Anytime you make changes to Multi App Manager, you will have to go through these steps again (archiving and then installing).
If you have the local version installed already, it's sufficient to run
npm update @plutovr/multi-app-manager after archiving, as this will update to the newer archive file.Publishing new package and release versions
1. Checkout main (which should already have merged any changes for the new version)
2. Use npm version version-number-or-semantic-level to add a new commit and tag with the new version (e.g. npm version v0.10.0 or npm version patch)
3. npm run archive
4. npm publish
5. git push --tags`