Bump express from 4.18.2 to 4.19.2 (#212)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 file changed
tree: fef2495b40edf08d2ad31fd999340e73818a8de7
  1. .github/
  2. blog/
  3. community/
  4. docs/
  5. events/
  6. i18n/
  7. meetup/
  8. scripts/
  9. sidebars/
  10. src/
  11. static/
  12. versioned_docs/
  13. versioned_sidebars/
  14. .asf.yaml
  15. .eslintrc.js
  16. .gitignore
  17. babel.config.js
  18. doap_EventMesh.rdf
  19. docusaurus.config.js
  20. eventmesh-multi-runtime.drawio
  21. LICENCE
  22. package-lock.json
  23. package.json
  24. README.md
  25. tsconfig.json
  26. versions.json
README.md

Apache EventMesh Website

Development

Clone and install dependencies:

git clone git@github.com:apache/eventmesh-site.git
cd eventmesh-site

npm install

Preview the website in development mode:

# Start the website with English documentations
npm run start -- --locale en

# Start the website with Chinese documentations
npm run start -- --locale zh

Build and view the website:

npm run build

npm run serve

Sync Documentation from apache/eventmesh

The npm run fetch script (scripts/fetch.ts) clones the apache/eventmesh repository and copies the documentations to docs and i18n/zh/docusaurus-plugin-content-docs. To update the documentation, please create a pull request in the apache/eventmesh repository.

npm run fetch

npm run start -- --locale en