From 09b203a014db71105f9ec83d5b3b0ad10f9af9e1 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Wed, 12 Mar 2025 13:13:22 +0100 Subject: [PATCH] Correct directory name from 'types' to 'typings' in README and prepare script --- README.md | 4 ++-- prepare.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 076aaa1..4ae8815 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/prepare.sh b/prepare.sh index 78e13a1..6cc525e 100755 --- a/prepare.sh +++ b/prepare.sh @@ -2,8 +2,8 @@ set -e -# Build types library -cd types +# Build typings library +cd typings npm install npm run sync-ce cd ..