mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
[GH-ISSUE #249] npm run dev errors, ELIFECYCLE unhandled exception #168
Labels
No labels
bug
documentation
enhancement
libui issue
pull-request
question
wait for libui implementation
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/proton-native#168
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @apollolux on GitHub (Jan 22, 2020).
Original GitHub issue: https://github.com/kusti8/proton-native/issues/249
Describe the bug
Attempting to run via
npm run devfails with an unhandledELIFECYCLEerror. Log as follows:To Reproduce
Untouched, freshly created via
proton-native init myappproject; runnpm run devonce setup is done.Expected behavior
Expected it to work.
Versions:
Additional context
Are there any missing dependencies or something? Do I need to install Qt5-dev Win10 flavor somehow or cmake or something?
npm run startworks fine, however.@apollolux commented on GitHub (Jan 22, 2020):
Apparently the logfile sucks, the below seems to be the actual error to look at:
@apollolux commented on GitHub (Jan 27, 2020):
Figured it out from this Stack Overflow answer - Windows vs non-Windows way of calling
npminstance = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ["run", "webpackRun"]);Gonna PR proton-native-cli shortly.