Skip to content

Commit 70aa708

Browse files
committed
fixing paths to work properly with vite bundling
1 parent 6088821 commit 70aa708

File tree

12 files changed

+83
-83
lines changed

12 files changed

+83
-83
lines changed

client/neutralino.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"center": true,
3838
"fullScreen": false,
3939
"alwaysOnTop": false,
40-
"icon": "src/web/public/assets/icon.ico",
40+
"icon": "src/assets/icon.ico",
4141
"enableInspector": false,
4242
"borderless": false,
4343
"maximize": false,
@@ -65,7 +65,7 @@
6565
"distributionPath": "dist"
6666
},
6767
"applicationName": "POE2 Trade Alert",
68-
"applicationIcon": "src/web/public/assets/icon.ico",
68+
"applicationIcon": "src/assets/icon.ico",
6969
"author": "Tyler Johnson",
7070
"description": "Path of Exile 2 Trade Notification System",
7171
"copyright": "Copyright © 2024 Tyler Johnson"

client/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
"@neutralinojs/lib": "^6.0.0",
1717
"@solidjs/router": "^0.15.3",
1818
"@tailwindcss/vite": "^4.1.4",
19-
"autoprefixer": "^10.4.20",
19+
"autoprefixer": "^10.4.21",
2020
"concurrently": "^9.1.2",
2121
"cross-env": "^7.0.3",
2222
"solid-js": "^1.9.5",
23-
"tailwindcss": "^4.0.3"
23+
"tailwindcss": "^4.1.4"
2424
},
2525
"devDependencies": {
26-
"@neutralinojs/neu": "^11.3.1",
27-
"@types/node": "^20.11.16",
28-
"terser": "^5.37.0",
29-
"typescript": "^5.7.3",
26+
"@neutralinojs/neu": "^11.4.0",
27+
"@types/node": "^22.14.1",
28+
"terser": "^5.39.0",
29+
"typescript": "^5.8.3",
3030
"vite": "^6.3.1",
31-
"vite-plugin-solid": "^2.11.1"
31+
"vite-plugin-solid": "^2.11.6"
3232
},
3333
"engines": {
34-
"node": ">=16"
34+
"node": ">=22"
3535
},
3636
"author": "",
3737
"license": "Apache-2.0"

client/pnpm-lock.yaml

Lines changed: 57 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/pnpm-workspace.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
onlyBuiltDependencies:
2+
- bufferutil
3+
- es5-ext
4+
- esbuild
5+
- utf-8-validate
File renamed without changes.

client/src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { AuthStatus } from './components/AuthStatus';
44
import { Statistics } from './components/Statistics';
55
import { Configuration } from './components/Configuration';
66
import { Console, isExpanded } from './components/Console';
7-
import './styles/style.css';
87

98
const App: Component = () => {
109
return (
@@ -24,4 +23,4 @@ const App: Component = () => {
2423
);
2524
};
2625

27-
export default App;
26+
export default App;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)