Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit f17ca82

Browse files
authored
fix: fix electron main reference (#494)
The main module is called `main.js` not `main.cjs`. This prevents `npm start` from working.
1 parent 8989e4d commit f17ca82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/run-in-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"license": "MIT",
1212
"author": "David Dias <daviddias@ipfs.io>",
13-
"main": "main.cjs",
13+
"main": "main.js",
1414
"scripts": {
1515
"clean": "echo 'Nothing to clean...'",
1616
"start": "electron .",

0 commit comments

Comments
 (0)