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
{{ message }}
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
By running [`npm ci`](https://docs.npmjs.com/cli/v9/commands/npm-ci) instead of [`npm i`](https://docs.npmjs.com/cli/v9/commands/npm-install) it is ensured that the dependency tree is installed exactly as stated in the [`package-lock.json`](https://docs.npmjs.com/cli/v9/configuring-npm/package-lock-json) file. That guarantees the usage of identical dependency trees throughout development.
69
+
70
+
### Working on the packages
71
+
72
+
1. Bootstrap the Lerna environment
73
+
74
+
```shell
75
+
$ npx lerna bootstrap
76
+
```
77
+
78
+
2. Do your changes on a seperate branch, e.g. `feature/my-bug-fix`
79
+
80
+
3. When done, run tests using the following command:
81
+
82
+
```shell
83
+
$ npx lerna run test
84
+
```
85
+
86
+
### Contributing to the documentation
87
+
88
+
All documentation resided within the `docs/` directory. Is is built upon [Docusaurus](https://docusaurus.io/) and primarily written in Markdown.
89
+
90
+
Install dependencies using
91
+
92
+
```shell
93
+
$ npm ci
94
+
```
95
+
96
+
and start the development server by running
97
+
98
+
```shell
99
+
$ npm start
100
+
```
101
+
102
+
To produce a production build, run
103
+
104
+
```shell
105
+
$ npm run build
106
+
```
107
+
108
+
That produces a static site which can be served using
0 commit comments