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.
25
+
26
+
## Working on the packages
27
+
28
+
1. Bootstrap the Lerna environment
29
+
30
+
```shell
31
+
$ npx lerna bootstrap
32
+
```
33
+
34
+
2. Do your changes on a seperate branch, e.g. `feature/my-bug-fix`
35
+
36
+
## Contributing to the documentation
37
+
38
+
All documentation resided within the `docs/` directory. Is is built upon [Docusaurus](https://docusaurus.io/) and primarily written in Markdown.
39
+
40
+
Install dependencies using
41
+
42
+
```shell
43
+
$ npm ci
44
+
```
45
+
46
+
and start the development server by running
47
+
48
+
```shell
49
+
$ npm start
50
+
```
51
+
52
+
To produce a production build, run
53
+
54
+
```shell
55
+
$ npm run build
56
+
```
57
+
58
+
That produces a static site which can be served using
0 commit comments