You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
584 B
Markdown
18 lines
584 B
Markdown
# Installation/Publishing
|
|
|
|
To install this package:
|
|
|
|
```bash
|
|
yarn config set '@sakal:registry' 'https://git.sakal.us/api/packages/brian/npm/'
|
|
# or use `.yarnrc`: echo '"@torahanytime:registry" "https://git.sakal.us/api/packages/brian/npm/"' >> .yarnrc
|
|
# or use `.npmrc`: echo '@torahanytime:registry=https://git.sakal.us/api/packages/brian/npm/' >> .npmrc
|
|
yarn add @sakal/fsm
|
|
```
|
|
|
|
To publish a new version of this package:
|
|
|
|
```bash
|
|
yarn config set -- '//git.sakal.us/api/packages/brian/npm/:_authToken' "${GITEA_AUTH_TOKEN}"
|
|
yarn login --scope sakal
|
|
yarn build && yarn publish
|
|
``` |