Skip to content

Commit

Permalink
remove babel polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizeta committed Jan 20, 2016
1 parent 122d485 commit 433879d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compact": false,
"compact": true,
"comments": false,
"presets": ["es2015"],
"plugins": [
"syntax-async-functions",
"syntax-object-rest-spread",
"transform-es2015-modules-commonjs",
"transform-async-to-generator",
"transform-object-rest-spread",
"transform-regenerator",
"transform-runtime"
"transform-strict-mode"
]
}
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
},
"homepage": "https://github.com/Gizeta/kcsp",
"dependencies": {
"babel-polyfill": "^6.3.14",
"daemon": "^1.1.0",
"forever-monitor": "^1.7.0",
"level": "^1.4.0",
Expand All @@ -39,8 +38,11 @@
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-plugin-syntax-export-extensions": "^6.3.13",
"babel-plugin-transform-async-to-generator": "^6.4.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.3.26",
"babel-preset-es2015": "^6.3.13"
"babel-plugin-transform-strict-mode": "^6.3.13"
}
}
1 change: 0 additions & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import server from './server';
import config from './config';
import logger from './logger';
import 'babel-polyfill';

server.listen(config.port);
logger.info('kcsp server started.');

0 comments on commit 433879d

Please sign in to comment.