Skip to content

Commit

Permalink
fix: add io as named exports
Browse files Browse the repository at this point in the history
The TypeScript (build/index.d.ts) and ES modules exports did not match,
which caused issues with webpack and ts-loader.

Related: #1396
  • Loading branch information
darrachequesne committed Nov 17, 2020
1 parent 969d5c9 commit 959b12e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions wrapper.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import io from "./build/index.js";

export const Manager = io.Manager;
export const io = io;
export default io;

0 comments on commit 959b12e

Please sign in to comment.