Skip to content

Commit

Permalink
fix: add mixins, handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Lansoweb committed Aug 28, 2019
1 parent 8ab950c commit 2155295
Show file tree
Hide file tree
Showing 10 changed files with 282 additions and 3,715 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 2017
"ecmaVersion": 2018
},
"rules": {
"require-jsdoc": "off",
"no-console": "off",
"no-underscore-dangle": ["error", { "allow": ["_id"] }],
"max-len": ["error", { "code": 120 }]
},
Expand Down
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@ const response = require('./src/response');
const uuid = require('./src/uuid');
const hal = require('./src/hal');
const configClient = require('./src/configClient');
const handlers = require('./src/handlers');
const Handler = require('./src/handler');
const errors = require('./src/errors');
const mixins = require('./src/mixin');

// noinspection JSUnusedGlobalSymbols
module.exports = {
response,
uuid,
handlers,
Handler,
hal,
configClient,
errors,
mixins,
};
Loading

0 comments on commit 2155295

Please sign in to comment.