Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '22'

- name: Install packages
run: yarn install --frozen-lockfile
Expand All @@ -37,12 +37,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '22'

- name: Install packages
run: yarn install --frozen-lockfile
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ yarn build

This will create a `build` directory with files ready for everyday use.

To build for serving from within PPSSPP using the built-in webserver, build
like this:

```sh
PUBLIC_URL=/debugger yarn build
```

### What's this crazy syntax?

This app uses modern JavaScript syntax + JSX extensions.
Expand Down
20 changes: 12 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@
"homepage": "http://ppsspp-debugger.unknownbrackets.org",
"license": "GPL-3.0-or-later",
"dependencies": {
"clsx": "^1.1.1",
"react": "^18.1.0",
"@babel/plugin-syntax-flow": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"clsx": "2.1.1",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-app-polyfill": "^3.0.0",
"react-contextmenu": "^2.14.0",
"react-dom": "^18.1.0",
"react-modal": "^3.15.1",
"react-router-dom": "^5.3.3",
"react-dom": "18.3.1",
"react-modal": "3.16.3",
"react-router-dom": "5.3.4",
"react-scripts": "5.0.1",
"react-tabs": "^5.1.0",
"react-virtualized": "^9.22.3"
"react-tabs": "5.2.0",
"react-virtualized": "9.22.6",
"typescript": "^5.9.2"
},
"devDependencies": {
"eslint-plugin-jsdoc": "^39.3.0"
"eslint-plugin-jsdoc": "^54.1.1"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Loading