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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version: 2.1
orbs:
aws-cli: circleci/[email protected]
macos: circleci/[email protected] # For Rosetta (see below)
node: circleci/node@5.2.0 # For a recent npm version (see below)
node: circleci/node@7.1.0 # For a recent npm version (see below)
jobs:
# Build the **entire** app for macOS.
build-macos:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
# CircleCI docker workers are failing if they don't have enough memory (no swap)
resource_class: xlarge
docker:
- image: cimg/node:16.13
- image: cimg/node:18.20.8

working_directory: ~/GDevelop

Expand Down
9 changes: 5 additions & 4 deletions GDJS/Runtime/Electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@
"version": "GDJS_GAME_VERSION",
"dependencies": {
"GDJS_EXTENSION_NPM_DEPENDENCY": "0",
"@electron/remote": "^2.0.8"
"@electron/remote": "^2.1.2"
},
"scripts": {
"start": "electron main.js",
"build": "electron-builder"
"build": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"electron": "18.2.2",
"electron-builder": "22.11.11"
"electron": "32-x-y",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "GDJS_GAME_PACKAGE_NAME",
Expand Down
15 changes: 8 additions & 7 deletions newIDE/electron-app/app/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 newIDE/electron-app/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://gdevelop.io",
"main": "main.js",
"dependencies": {
"@electron/remote": "^2.0.8",
"@electron/remote": "^2.1.2",
"archiver": "^2.1.1",
"async": "^2.6.0",
"axios": "^0.19.1",
Expand Down
Loading