Skip to content

Commit

Permalink
fix: fix electron main reference (ipfs-examples#494)
Browse files Browse the repository at this point in the history
The main module is called `main.js` not `main.cjs`. This prevents `npm start` from working.
  • Loading branch information
gmreburn committed Sep 24, 2022
1 parent 8989e4d commit f17ca82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/run-in-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"license": "MIT",
"author": "David Dias <daviddias@ipfs.io>",
"main": "main.cjs",
"main": "main.js",
"scripts": {
"clean": "echo 'Nothing to clean...'",
"start": "electron .",
Expand Down

0 comments on commit f17ca82

Please sign in to comment.