Skip to content

Commit

Permalink
fix(index): fix export file
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed May 9, 2016
1 parent 8480679 commit ae5217f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"test": "test"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha"
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// LICENSE : MIT
"use strict";
import HTMLProcessor from "./HTMLProcessor";
export default {
module.exports = {
Processor: HTMLProcessor
}
};

0 comments on commit ae5217f

Please sign in to comment.