1 min readJun 12, 2019
Hi Marc,
There are a couple of things you can recheck:
- Make sure that you have the right syntax on you package.json file.
from:
“electron”: “electron”,
“electron-build”: “ng build — prod && npm run electron”
to:
“electron”: “electron .”,
“electron-build”: “ng build — prod && npm run electron .”
2. if that error has anything to do with you node module. Simply delete that folder and run: npm install
hopefully, this helps