Repository settings
Pre-release FOLIO modules are published to our folioci
package repository, apart from publicly available npm
. To install pre-release dependencies, you will need to configure your package manner to install @folio
-scoped packages from the folioci
repository by executing this in a command prompt:
$ yarn config set @folio:registry https://repository.folio.org/repository/npm-folioci/
Dev Workspace
For the best developer experience, it’s advisable to do development within a yarn workspace. Your workspace will need to include a FOLIO platform as well as a clone of your own ui-module. A sample workspace package.json for convenience can be as follows:
{ "private": true, "workspaces": [ "*" ], "dependencies": { "yarn": "^1.22.17" } }