diff --git a/README.md b/README.md index baf610f52..cd1f8143f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ yarn dev #### Build Storybook ``` -yarn workspace oxd-storybook build +yarn build:storybook ``` #### Unit Testing @@ -44,12 +44,27 @@ yarn workspace oxd-storybook build yarn test:unit ``` +#### Type checking + +``` +yarn type-check +``` + #### Linting ``` yarn lint ``` +#### Increment version + +```bash +# yarn version --help +yarn version +E.g. +yarn version patch +``` + ### License GNU General Public License diff --git a/package.json b/package.json index 74c94f309..77a073fcf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@ohrm/oxd", "license": "GPL-3.0", - "version": "2.0.1-alpha.1", + "version": "2.0.1", "private": true, "scripts": { "dev": "storybook dev -p 6006",