Skip to content

Commit

Permalink
Merge pull request #444 from mcottontensor/backport/UE5.5/pr-441
Browse files Browse the repository at this point in the history
[UE5.5] Merge pull request #441 from mcottontensor/develop-win-fix
  • Loading branch information
mcottontensor authored Feb 10, 2025
2 parents 60f6530 + b4a8b9b commit a6f0a57
Show file tree
Hide file tree
Showing 6 changed files with 17,678 additions and 17,677 deletions.
5 changes: 3 additions & 2 deletions Common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:proto && npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch:proto": "nodemon -V -d 3 --watch protobuf/signalling_messages.proto --exec 'npm run build:proto'",
"watch:proto": "nodemon -V -d 3 --watch protobuf/signalling_messages.proto --exec \"npm run build:proto\"",
"watch": "concurrently -k \"npm run watch:proto\" \"tsc --watch --preserveWatchOutput --project tsconfig.cjs.json\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"wtf": "concurrently -k \"npm list\""
},
"devDependencies": {
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion Frontend/library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch": "nodemon -V -d 3 --watch src --watch ../../Common/dist -e 'ts,js,mjs,cjs,json' --exec 'npm run build:cjs'",
"watch": "nodemon -V -d 3 --watch src --watch ../../Common/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build:cjs\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test": "jest --detectOpenHandles --coverage=true",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
Expand Down
2 changes: 1 addition & 1 deletion Frontend/ui-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch": "nodemon -V -d 3 --watch src --watch ../library/dist -e 'ts,js,mjs,cjs,json' --exec 'npm run build:cjs'",
"watch": "nodemon -V -d 3 --watch src --watch ../library/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build:cjs\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
Expand Down
2 changes: 1 addition & 1 deletion Signalling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch": "nodemon -V -d 3 --watch src --watch ../Common/dist -e 'ts,js,mjs,cjs,json' --exec 'npm run build:cjs'",
"watch": "nodemon -V -d 3 --watch src --watch ../Common/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build:cjs\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down
4 changes: 2 additions & 2 deletions SignallingWebServer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"start": "node ./dist/index.js --serve --console_messages verbose --log_config --https_redirect",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon -V -d 3 --watch src --watch ../Signalling/dist -e 'ts,js,mjs,cjs,json' --exec 'npm run build && node ./dist/index.js --serve --console_messages verbose --log_config --https_redirect --player_port 1025' --http_root www",
"develop": "cd ../ && npm run build:all:cjs && cd - && concurrently -k \"cd ../Common && npm run watch\" \"cd ../Signalling && npm run watch\" \"cd ../Frontend/library && npm run watch\" \"cd ../Frontend/ui-library && npm run watch\" \"cd ../Frontend/implementations/typescript && npm run watch\" \"npm run watch\""
"watch": "nodemon -V -d 3 --watch src --watch ../Signalling/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build && node ./dist/index.js --serve --console_messages verbose --log_config --https_redirect --player_port 1025\" --http_root www",
"develop": "cd ../ && npm run build:all:cjs && cd SignallingWebServer && concurrently -k \"cd ../Common && npm run watch\" \"cd ../Signalling && npm run watch\" \"cd ../Frontend/library && npm run watch\" \"cd ../Frontend/ui-library && npm run watch\" \"cd ../Frontend/implementations/typescript && npm run watch\" \"npm run watch\""
},
"author": "Epic Games",
"license": "MIT",
Expand Down
Loading

0 comments on commit a6f0a57

Please sign in to comment.