We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8480679 commit ae5217fCopy full SHA for ae5217f
package.json
@@ -22,7 +22,7 @@
22
"test": "test"
23
},
24
"scripts": {
25
- "build": "babel src --out-dir lib --source-maps",
+ "build": "NODE_ENV=production babel src --out-dir lib --source-maps",
26
"watch": "babel src --out-dir lib --watch --source-maps",
27
"prepublish": "npm run --if-present build",
28
"test": "mocha"
src/index.js
@@ -1,6 +1,6 @@
1
// LICENSE : MIT
2
"use strict";
3
import HTMLProcessor from "./HTMLProcessor";
4
-export default {
+module.exports = {
5
Processor: HTMLProcessor
6
-}
+};
0 commit comments