Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Jul 11, 2023
1 parent 545e5fa commit 36eb8ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions npm-scripts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ async function run()
case 'typescript:watch':
{
deleteLib();

executeCmd('tsc --watch');

break;
Expand Down Expand Up @@ -94,7 +93,6 @@ async function run()
case 'release':
{
checkRelease();

executeCmd(`git commit -am '${PKG.version}'`);
executeCmd(`git tag -a ${PKG.version} -m '${PKG.version}'`);
executeCmd(`git push origin v${MAYOR_VERSION}`);
Expand Down Expand Up @@ -219,6 +217,7 @@ function executeCmd(command, exitOnError = true)
if (exitOnError)
{
logError(`executeCmd() failed, exiting: ${error}`);

exitWithError();
}
else
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)"
],
"homepage": "https://mediasoup.org",
"license": "ISC",
"homepage": "https://mediasoup.org",
"repository": {
"type": "git",
"url": "https://github.com/versatica/mediasoup-client.git"
Expand All @@ -22,15 +22,15 @@
"npm-scripts.mjs",
"lib"
],
"engines": {
"node": ">=16"
},
"keywords": [
"webrtc",
"ortc",
"browser",
"nodejs"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
Expand Down

0 comments on commit 36eb8ab

Please sign in to comment.