Skip to content

Commit 3ad0567

Browse files
AStokerdarrachequesne
authored andcommitted
fix: add extension in the package.json main entry (#608)
The `main` entry for the `package.json` file is for defining the entry point. The entry is currently missing the required `.js` extension, this PR brings it back. Backported from 17b8c2f
1 parent 58e274c commit 3ad0567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "engine.io",
33
"version": "3.5.0",
44
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
5-
"main": "lib/engine.io",
5+
"main": "lib/engine.io.js",
66
"author": "Guillermo Rauch <guillermo@learnboost.com>",
77
"homepage": "https://github.com/socketio/engine.io",
88
"contributors": [

0 commit comments

Comments
 (0)