This monorepo will contain all packages related to core sdk and store.
Before doing any code change please take time to go through the guidelines line by line.
To setup locally, install lerna globally
npm install -g lerna
Clone the repo locally and run yarn install
git clone https://github.com/100mslive/web-sdks.git
cd web-sdks
yarn install
yarn test
yarn lint
For starting sdk and store locally, run yarn start
in both folders.
Note: run yarn start in sdk first and then in store
Run this to update all versions.
Go to the path of the package ex: cd packages/hms-video-web and run the following command
npm version prerelease --preid=alpha --git-tag-version=false
To update the same in dependent packages run
lerna add @100mslive/hms-video --scope=@100mslive/hms-video-store --exact
To publish an alpha/experimental from your experimental
branch, run the 'Create Release PR' action on the experimental
branch.
This bumps the version of all the packages and creates a PR against your experimental
branch.
Merge this PR into your experimental
branch and run the 'Publish Packages' on your branch to publish the packages.
check the existing remotes with git remote -v
;
if there is only one remote, add webapp as a new remote.
git remote add -f webapp https://github.com/100mslive/100ms-web.git
git subtree push --prefix=apps/100ms-web webapp sync-webapp
git subtree pull --prefix=apps/100ms-web webapp main
To add an existing repo
git clone <repourl>
- if commit history is not need directly copy the files.
cd repo
rm -rf .git
git rm -r --cached
cp -r repo path-to-web-sdks/packages
- if commit history is needed
lerna import path-to-repo --flatten --preserve-commit
(to be run at root level)
To Create a new repo
Follow the documentation here
Note: Don't forget to update mapping in
scripts/constants.js
. Also updatelernaCommands
inversioning.js
depending on the new repo's dependencies and dependents
window.toggleUiTheme()
in console to switch between dark and light themes- Set directJoin to true in PreviewScreen.jsx to not have to click on join after page reload.