Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit 8824d9c

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 9e7758d commit 8824d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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 <[email protected]>",
13-
"main": "main.cjs",
13+
"main": "main.js",
1414
"scripts": {
1515
"clean": "echo 'Nothing to clean...'",
1616
"start": "electron .",

0 commit comments

Comments
 (0)