Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizeta committed Jan 20, 2016
2 parents 09485da + 33c108c commit ec85355
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 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"
]
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin/kcsp text eol=lf
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kcsp",
"version": "0.4.1",
"version": "0.4.2",
"description": "A simple proxy server for KanColle to avoid network problems.",
"bin": {
"kcsp": "./bin/kcsp"
Expand Down 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.');
2 changes: 1 addition & 1 deletion src/env.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
APP_VERSION: '0.4.1'
APP_VERSION: '0.4.2'
}

0 comments on commit ec85355

Please sign in to comment.