Skip to content

Commit

Permalink
Remove module.exports
Browse files Browse the repository at this point in the history
That uhh, that was a stupid tired mistake. Does not do what I want it to do because I want it to work with `import` properly to make it easier to import, and importing with require is still as easy as `const { DMManager } = require('yamdbf-dm-manager');`
  • Loading branch information
zajrik committed Jul 13, 2017
1 parent 0cb8360 commit 1248018
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { DMManager } from './DMManager';
export { DMManager };
export default DMManager;
module.exports = DMManager;

0 comments on commit 1248018

Please sign in to comment.