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.

Backported from 17b8c2f
  • Loading branch information
AStoker authored and darrachequesne committed Jun 6, 2022
1 parent 58e274c commit 3ad0567
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": "3.5.0",
"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 3ad0567

Please sign in to comment.