Correct directory name from 'types' to 'typings' in README and prepare script

This commit is contained in:
juancarmore 2025-03-12 13:13:22 +01:00
parent 48f71a41c3
commit 09b203a014
2 changed files with 4 additions and 4 deletions

View File

@ -24,10 +24,10 @@ The OpenVidu Meet application is composed of two main parts (frontend and backen
Also, the frontend project installs external dependencies on the following libraries:
- [**openvidu-components-angular**](https://github.com/OpenVidu/openvidu/tree/master/openvidu-components-angular): A library of Angular components that provide the core functionality of the video conferencing service.
- [**typing**](./types/): Common types used by the frontend and backend.
- [**typings**](./typings/): Common types used by the frontend and backend.
- **Backend**: The backend is a Node.js application.
- [**typings**](./types/): Common types used by the frontend and backend.
- [**typings**](./typings/): Common types used by the frontend and backend.
## Development

View File

@ -2,8 +2,8 @@
set -e
# Build types library
cd types
# Build typings library
cd typings
npm install
npm run sync-ce
cd ..