Skip to content

Commit

Permalink
Update template deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcticFqx committed Jan 16, 2024
1 parent d9e6d8d commit 25c4e05
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion automation/neu-dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
16 changes: 11 additions & 5 deletions automation/neu-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"defaultMode": "window",
"port": 0,
"documentRoot": "/dist/web",
"documentRoot": "/dist/web/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
Expand All @@ -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"
}
}
}
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 25c4e05

Please sign in to comment.