You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you adding dependencies to your packages it is recommended to run `bootstrap` command from the root of the repository. This command will update packages dependencies.
10
+
11
+
```bash
12
+
yarn install
13
+
yarn bootstrap
14
+
yarn build
15
+
```
16
+
17
+
## Testing and linting
18
+
19
+
```bash
20
+
yarn lint
21
+
yarn test
22
+
```
23
+
24
+
## Maintenance
25
+
26
+
New repository version setup (according to the SDK stake should be chosen custom `prerelease` or `major` release version type from the `lerna` CLI dialog):
27
+
28
+
```bash
29
+
npx lerna version prerelease --yes --sign-git-commit --sign-git-tag
30
+
# npx lerna version major --yes --sign-git-commit --sign-git-tag
31
+
# npx lerna version minor --yes --sign-git-commit --sign-git-tag
32
+
# npx lerna version patch --yes --sign-git-commit --sign-git-tag
0 commit comments