Skip to content

Commit

Permalink
feat: node 8.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dexteryy committed Aug 9, 2017
1 parent 1dedc2b commit 487d32c
Show file tree
Hide file tree
Showing 7 changed files with 8,146 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
"plugins": [
"add-module-exports",
"transform-es2015-modules-commonjs",
"fast-async",
"transform-function-bind",
"transform-class-properties",
"transform-object-rest-spread",
"transform-decorators-legacy"
"transform-decorators"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ nodecube is a batch of continuously updated base code and configurations for the
* [uuid](https://www.npmjs.com/package/uuid) + [shortid](https://www.npmjs.com/package/shortid) + [bcrypt](https://www.npmjs.com/package/bcrypt) + [spark-md5](https://www.npmjs.com/package/spark-md5)
* [Docker](https://docs.docker.com/engine/reference/builder/) + [Docker Compose](https://docs.docker.com/compose/compose-file/)
* [Babel v6](babeljs.io)
* [babel-preset-env (node v7.8+)](https:/babel/babel-preset-env) + [ES2015 modules](https://www.npmjs.com/package/babel-plugin-transform-es2015-modules-commonjs) + [add-module-exports](https:/59naga/babel-plugin-add-module-exports) + [Object rest spread](http://babeljs.io/docs/plugins/transform-object-rest-spread/) + [Class Properties](http://babeljs.io/docs/plugins/transform-class-properties/) + [Legacy Decorator](https://www.npmjs.com/package/babel-plugin-transform-decorators-legacy) + [JSX + Flow](http://babeljs.io/docs/plugins/preset-react/)
* [babel-preset-env (node v7.8+)](https:/babel/babel-preset-env) + [ES2015 modules](https://www.npmjs.com/package/babel-plugin-transform-es2015-modules-commonjs) + [add-module-exports](https:/59naga/babel-plugin-add-module-exports) + [Object rest spread](http://babeljs.io/docs/plugins/transform-object-rest-spread/) + [Class Properties](http://babeljs.io/docs/plugins/transform-class-properties/) + [Legacy Decorator](https://www.npmjs.com/package/babel-plugin-transform-decorators) + [JSX + Flow](http://babeljs.io/docs/plugins/preset-react/)
* [ESLint v2](http://eslint.org/) ([babel](https://www.npmjs.com/package/babel-eslint) + [react](https://www.npmjs.com/package/eslint-plugin-react) + [flowtype](https:/gajus/eslint-plugin-flowtype) [TODO] + [graphql](https://www.npmjs.com/package/eslint-plugin-graphql) [TODO] + [fp](eslint-plugin-fp) [TODO]) + [Flow](flowtype.org)
* [AVA](https:/avajs/ava) [TODO] / [Mocha](http://mochajs.org/) & [Chai](http://chaijs.com/) + [supertest](https://www.npmjs.com/package/supertest) + [nock](https://www.npmjs.com/package/nock) + [Sinon.JS](http://sinonjs.org/) + [faker.js](https:/Marak/Faker.js)
* [dotenv](https://www.npmjs.com/package/dotenv) + [Plop](https:/amwmedia/plop) [TODO] ([Handlebar](http://handlebarsjs.com/) + [Inquirer](https://www.npmjs.com/package/inquirer)) + [Commitizen](https://www.npmjs.com/package/commitizen) ([cz-conventional-changelog](https:/commitizen/cz-conventional-changelog)) + [Husky](https:/typicode/husky) + [EditorConfig](http://editorconfig.org/)
Expand Down
2 changes: 1 addition & 1 deletion configs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM node:7.8
FROM node:8.2.1

# for unbuntu
RUN echo "Asia/Shanghai" > /etc/timezone
Expand Down
2 changes: 1 addition & 1 deletion configs/Dockerfile-china
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM node:7.8
FROM node:8.2.1

# for unbuntu
RUN echo "Asia/Shanghai" > /etc/timezone
Expand Down
4 changes: 2 additions & 2 deletions configs/babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"presets": [
["env", {
"targets": {
"node": "7.8"
"node": "8.2.1"
},
"include": [],
"useBuiltIns": true,
Expand All @@ -17,6 +17,6 @@
"transform-function-bind",
"transform-class-properties",
"transform-object-rest-spread",
"transform-decorators-legacy"
"transform-decorators"
]
}
Loading

0 comments on commit 487d32c

Please sign in to comment.