chore: update docs and commands for the docs website (#67)
This commit is contained in:
parent
4e2d1562e6
commit
ef779de6d4
2 changed files with 12 additions and 1 deletions
|
@ -60,12 +60,22 @@ npm i
|
||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Open the demo application on you browser. Browse to the address:
|
5. Open the demo application on you browser. Browse to the address
|
||||||
|
|
||||||
```
|
```
|
||||||
https://localhost:3000
|
https://localhost:3000
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# The Documentation website
|
||||||
|
|
||||||
|
|
||||||
|
Want to update the documentation? We also maintain the documentation website in this repository. The source for this is found in the `docs` directory. You can also start the dev server for the docs website with the following command:
|
||||||
|
|
||||||
|
```
|
||||||
|
npm run docs
|
||||||
|
```
|
||||||
|
|
||||||
# Running the linter and tests
|
# Running the linter and tests
|
||||||
|
|
||||||
Please run the linter and tests before creating a PR to avoid delays in PR reviews. Fix all linting errors or failing tests whey you run the following commands.
|
Please run the linter and tests before creating a PR to avoid delays in PR reviews. Fix all linting errors or failing tests whey you run the following commands.
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
"build": "npm run build --workspaces --if-present",
|
"build": "npm run build --workspaces --if-present",
|
||||||
"test:watch": "npm run test:watch --workspaces --if-present",
|
"test:watch": "npm run test:watch --workspaces --if-present",
|
||||||
"dev": "npm run dev -w demo",
|
"dev": "npm run dev -w demo",
|
||||||
|
"docs": "npm run dev -w docs",
|
||||||
"bump": "npm version patch -w",
|
"bump": "npm version patch -w",
|
||||||
"bump-minor": "npm version minor -w",
|
"bump-minor": "npm version minor -w",
|
||||||
"bump-major": "npm version major -w",
|
"bump-major": "npm version major -w",
|
||||||
|
|
Loading…
Reference in a new issue