From 25c4e05ee61b43024f0b6ff9775384ef446e3973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan-Eric=20N=C3=A6ss?= Date: Tue, 16 Jan 2024 23:21:10 +0100 Subject: [PATCH] Update template deps --- automation/neu-dev.ts | 2 +- automation/neu-template.json | 16 +++++++++++----- package.json | 20 ++++++++++---------- 3 files changed, 22 insertions(+), 16 deletions(-) diff --git a/automation/neu-dev.ts b/automation/neu-dev.ts index 81eaf48..e1649af 100644 --- a/automation/neu-dev.ts +++ b/automation/neu-dev.ts @@ -4,7 +4,7 @@ import WriteNeuConfig from './write-neu-config'; WriteNeuConfig(); const vite = exec('vite'); vite.stdout?.pipe(process.stdout); -exec('neu run --frontend-lib-dev -- --window-enable-inspector=true').on('close', () => { +exec('neu run -- --window-enable-inspector=true').on('close', () => { vite.kill(); process.exit(); }); diff --git a/automation/neu-template.json b/automation/neu-template.json index 1c665e7..8367c81 100644 --- a/automation/neu-template.json +++ b/automation/neu-template.json @@ -3,7 +3,7 @@ "version": "1.0.0", "defaultMode": "window", "port": 0, - "documentRoot": "/dist/web", + "documentRoot": "/dist/web/", "url": "/", "enableServer": true, "enableNativeAPI": true, @@ -28,16 +28,22 @@ "maximize": false, "hidden": false, "resizable": true, - "exitProcessOnClose": true + "exitProcessOnClose": false, + "useSavedState": false } }, "cli": { "binaryName": "chocobois-jam-template", "resourcesPath": "/dist/", - "binaryVersion": "4.12.0", + "binaryVersion": "4.14.1", + "clientVersion": "3.12.0", "frontendLibrary": { - "patchFile": "/src/index.html", - "devUrl": "http://127.0.0.1:5173/" + "patchFile": "/src/index.html", + "devUrl": "http://127.0.0.1:5173", + "projectPath": "/", + "initCommand": "echo", + "devCommand": "echo", + "buildCommand": "echo" } } } \ No newline at end of file diff --git a/package.json b/package.json index 025d07b..6117984 100644 --- a/package.json +++ b/package.json @@ -11,23 +11,23 @@ "postinstall": "vite-node automation/setup.ts" }, "dependencies": { - "@neutralinojs/lib": "^3.10.0", + "@neutralinojs/lib": "^3.13.0", "phaser": "^3.70.0", - "phaser3-rex-plugins": "^1.60.7" + "phaser3-rex-plugins": "^1.60.9" }, "devDependencies": { - "@neutralinojs/neu": "^9.6.0", + "@neutralinojs/neu": "^10.1.0", "png-to-ico": "^2.1.8", "resedit": "^2.0.0", "rimraf": "^5.0.5", - "sharp": "^0.32.6", - "terser": "^5.24.0", - "typescript": "^5.2.2", - "vite": "^5.0.0", - "vite-node": "^0.34.6", + "sharp": "^0.33.2", + "terser": "^5.26.0", + "typescript": "^5.3.3", + "vite": "^5.0.11", + "vite-node": "^1.2.0", "vite-plugin-checker": "^0.6.2", "vite-plugin-image-optimizer": "^1.1.7", - "vite-plugin-zip-pack": "^1.0.6", - "vite-tsconfig-paths": "^4.2.1" + "vite-plugin-zip-pack": "^1.0.7", + "vite-tsconfig-paths": "^4.3.0" } }