Skip to content

Commit

Permalink
Merge pull request #100 from jmlee337/network
Browse files Browse the repository at this point in the history
File Networking
  • Loading branch information
jmlee337 authored Jan 29, 2025
2 parents 7ee9f1b + ac9a6b4 commit 5e15870
Show file tree
Hide file tree
Showing 13 changed files with 1,596 additions and 188 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ module.exports = {
globals: {
RequestInfo: true,
RequestInit: true,
NodeJS: true,
},
};
61 changes: 54 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"react-hotkeys": "^2.0.0",
"react-router-dom": "^6.16.0",
"sanitize-filename": "^1.6.3",
"slp-enforcer": "^0.5.2",
"slp-enforcer": "^1.1.2",
"yazl": "^2.5.1"
},
"devDependencies": {
Expand Down
94 changes: 93 additions & 1 deletion release/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@
},
"dependencies": {
"detect-usb": "^2.0.0",
"eject-media": "^0.0.3"
"eject-media": "^0.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"prebuild-install": "^7.1.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
}
}
10 changes: 10 additions & 0 deletions src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,13 @@ export enum GuideState {
REPLAYS,
PLAYERS,
}

export type CopyRemote = {
address: string;
name: string;
};

export enum WebSocketServerStatus {
STOPPED,
STARTED,
}
Loading

0 comments on commit 5e15870

Please sign in to comment.