Skip to content

Commit

Permalink
fix(index): Use module.exports instead of export on index
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerska committed Dec 9, 2015
1 parent 0aa5b63 commit 81e7eee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export default require('./src/lib/main.js');
/* eslint algolia/no-module-exports: 0 */

import main from './src/lib/main.js';
module.exports = main;

0 comments on commit 81e7eee

Please sign in to comment.