Constants used across Formsort projects.
Shared tsconfig for use across all projects.
This repo uses pnpm for package management. The pinned version is declared in the packageManager field of the root package.json; enable Corepack (or install pnpm directly) to use it.
First, install all the dependencies:
pnpm install --frozen-lockfileThis will install all the dependencies of the sub packages, and also creates symlinks between references within this repository.
Now, you can edit across packages. Commit your changes when you are happy.
Create a folder in /packages and initialize a project there (pnpm init).
To allow the project to be public on npm registry, specify the following in the package.json:
"publishConfig": {
"access": "public"
}