Skip to content

Commit 7b4d363

Browse files
[fix] Fix start:dev script (#3773)
This will fix #3772 caused by #3764. Since I work with `start:wayland:dev` instead of `start:dev`, I didn't notice this, sorry.
1 parent a5b85c4 commit 7b4d363

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ planned for 2025-07-01
1313

1414
### Added
1515

16-
- [clock] Added option 'disableNextEvent' to hide next sun event.
16+
- [clock] Added option 'disableNextEvent' to hide next sun event (#3769)
1717

1818
### Changed
1919

2020
- [refactor] Simplify module loading process (#3766)
21-
- Use "node --run" instead of "npm run" (#3764)
21+
- Use `node --run` instead of `npm run` (#3764) and adapt `start:dev` script.
2222
- [workflow] Run linter und spellcheck with LTS node version (#3767)
2323
- [workflow] Split "Run test" step into two steps for more clarity (#3767)
2424

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"prepare": "[ -f node_modules/.bin/husky ] && husky || echo no husky installed.",
3838
"server": "node ./serveronly",
3939
"start": "node --run start:x11",
40-
"start:dev": "node --run start -- dev",
40+
"start:dev": "node --run start:x11 -- dev",
4141
"start:wayland": "WAYLAND_DISPLAY=\"${WAYLAND_DISPLAY:=wayland-1}\" ./node_modules/.bin/electron js/electron.js --enable-features=UseOzonePlatform --ozone-platform=wayland",
4242
"start:wayland:dev": "node --run start:wayland -- dev",
4343
"start:windows": ".\\node_modules\\.bin\\electron js\\electron.js",

0 commit comments

Comments
 (0)