Skip to content

Commit

Permalink
v0.4.4: update dependencies
Browse files Browse the repository at this point in the history
- updated to babel 6
- temp disable babel-eslint due to compatible issue
  babel/babel-eslint#199
  • Loading branch information
frantic1048 committed Nov 13, 2015
1 parent 9e7c25d commit ced77dc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["es2015"]
}

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![codeclimate analysis](https://img.shields.io/codeclimate/github/frantic1048/abackend.svg?style=flat-square)](https://codeclimate.com/github/frantic1048/abackend)
![coverage](https://img.shields.io/codeclimate/coverage/github/frantic1048/abackend.svg?style=flat-square)
[![build status](https://img.shields.io/travis/frantic1048/abackend.svg?style=flat-square)](https://travis-ci.org/frantic1048/abackend)
![david-dm](https://img.shields.io/david/frantic1048/abackend.svg?style=flat-square)
[![david-dm](https://img.shields.io/david/frantic1048/abackend.svg?style=flat-square)](https://david-dm.org/frantic1048/abackend)

一个记事本应用的 Web API 服务器,提供身份验证,同步记事等 API。

Expand Down
4 changes: 3 additions & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ gulp.task('watch', (callback) => {
// CI
gulp.task('default', (callback) => {
runSequence(
['compile', 'lint'],
// NOTE: disable lint because bebel-eslint is not compatible with babel-core 6+ yet
// ['compile', 'lint'],
'compile',
'pre-test',
'serve',
'test',
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abackend",
"version": "0.4.3",
"version": "0.4.4",
"description": "a web API backend for a homework",
"main": "build/server.js",
"scripts": {
Expand All @@ -22,24 +22,25 @@
},
"homepage": "https://github.com/frantic1048/abackend#readme",
"devDependencies": {
"babel-eslint": "^4.1.3",
"gulp-babel": "^5.2.1",
"babel-eslint": "^4.1.5",
"gulp-babel": "^6.1.0",
"gulp-eslint": "^1.0.0",
"gulp-istanbul": "^0.10.1",
"gulp-jasmine": "^2.1.0",
"gulp-newer": "^0.5.1",
"gulp-istanbul": "^0.10.2",
"gulp-jasmine": "^2.2.1",
"gulp-newer": "^1.0.0",
"hippie": "^0.4.0",
"jasmine-spec-reporter": "^2.4.0"
},
"dependencies": {
"babel-core": "^5.8.25",
"babel-core": "^6.1.19",
"babel-preset-es2015": "^6.1.18",
"body-parser": "^1.14.1",
"express": "^4.12.3",
"express": "^4.13.3",
"gulp": "^3.9.0",
"jsonwebtoken": "^5.4.0",
"mongoose": "^4.1.10",
"jsonwebtoken": "^5.4.1",
"mongoose": "^4.2.5",
"morgan": "^1.6.1",
"run-sequence": "^1.1.4",
"winston": "^1.1.0"
"winston": "^1.1.2"
}
}

0 comments on commit ced77dc

Please sign in to comment.