File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "presets" : [
3+ " babel-preset-env"
4+ ],
5+ "env" : {
6+ "production" : {
7+ "presets" : [
8+ " minify"
9+ ]
10+ }
11+ }
12+ }
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ typings/
6363# coverall token
6464.coveralls.yml
6565
66+ dist
6667.DS_Store
6768untitled.sublime-project
6869untitled.sublime-workspace
Original file line number Diff line number Diff line change 11{
22 "name" : " variadic.js" ,
3- "version" : " 0.0.18 " ,
3+ "version" : " 0.0.20 " ,
44 "description" : " A ES6 library of useful variadic functions." ,
5- "main" : " index.js" ,
5+ "main" : " dist/ index.js" ,
66 "scripts" : {
77 "test" : " nyc jasmine" ,
88 "lint" : " eslint index.js lib/**/*.js spec/**/*.js" ,
99 "fix" : " eslint index.js lib/**/*.js spec/**/*.js --fix" ,
10- "coveralls" : " nyc jasmine && nyc report --reporter=text-lcov | coveralls"
10+ "coveralls" : " nyc jasmine && nyc report --reporter=text-lcov | coveralls" ,
11+ "build" : " BABEL_ENV=production babel index.js -d dist && BABEL_ENV=production babel lib/ -d dist/lib"
1112 },
1213 "repository" : {
1314 "type" : " git" ,
2425 },
2526 "homepage" : " https://github.com/variadicjs/variadic.js" ,
2627 "devDependencies" : {
28+ "babel-cli" : " ^6.26.0" ,
29+ "babel-preset-env" : " ^1.6.1" ,
30+ "babel-preset-minify" : " ^0.3.0" ,
2731 "coveralls" : " ^3.0.0" ,
32+ "cross-env" : " ^5.1.3" ,
2833 "eslint" : " ^4.16.0" ,
2934 "eslint-config-airbnb-base" : " ^12.1.0" ,
3035 "eslint-config-airbnb-standard" : " ^1.6.6" ,
You can’t perform that action at this time.
0 commit comments