## Using the Makefile 1. First, create a `.env` file in the root of the project with the following content: ``` REPOSITORIES="app portal" ``` These are the repositories that will be updated by the script. 1. To build the package and apply it to the local repositories, run the following command: `make apply` To bump the version number and publish to npm, run the following command: `make publish` To do both, run the following command: `make all` - There is not yet automatic package.json version updating for other repositories, so you have to do that manually. ## Building the Package To build the package, run the following command: `npm run build` The package will be built in the `dist` folder. ## Publishing to npm To make a public publish to npm, use the following command: `npm publish --access public` Make sure to bump the version number in `package.json` first.