Skip to content

Commit

Permalink
fix: add extension in the package.json main entry (#608)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
AStoker committed Nov 8, 2020
1 parent 3284208 commit 17b8c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "engine.io",
"version": "4.0.1",
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
"main": "lib/engine.io",
"main": "lib/engine.io.js",
"author": "Guillermo Rauch <guillermo@learnboost.com>",
"homepage": "https://github.com/socketio/engine.io",
"contributors": [
Expand Down

0 comments on commit 17b8c2f

Please sign in to comment.