DEV Community

Discussion on: Build and Publish a Multi-Platform Electron App on GitHub

Collapse
 
greggman profile image
Greggman • Edited

If I understand correctly you probably want to change npm install to npm ci. npm install will use the latest compatible dependencies where as npm ci will use what's in package-lock.json.

Collapse
 
erikhofer profile image
Erik Hofer

Yeah, that is a good hint! :)