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 fbb7f1d commit d642913Copy full SHA for d642913
.gitignore
@@ -3,3 +3,4 @@ coverage
3
*.log
4
lib
5
dist
6
+es
package.json
@@ -13,8 +13,9 @@
13
"test": "mocha --compilers js:babel-core/register --reporter spec test/*.js",
14
"posttest": "npm run lint",
15
"lint": "eslint src test",
16
- "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
+ "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
17
"build:commonjs": "babel src --out-dir lib",
18
+ "build:es": "BABEL_ENV=es babel src --out-dir es",
19
"build:umd": "NODE_ENV=development webpack",
20
"build:umd:min": "NODE_ENV=production webpack"
21
},
0 commit comments