Skip to content

Commit

Permalink
Upgrade package dependencies to fix vulnerability warning (#4)
Browse files Browse the repository at this point in the history
* Bump all package dependency versions
* Fix all linter errors and fix export statements
  • Loading branch information
bwtimm committed Aug 29, 2018
1 parent 668a733 commit 5aefdf3
Show file tree
Hide file tree
Showing 9 changed files with 2,194 additions and 2,982 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"transform-runtime"
],
"presets": [
"es2015",
"env",
"stage-3",
]
}
10 changes: 8 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
const middleware = require('./lib');
import logger from './lib/logger';
import methods from './lib/methods';
import response from './lib/response';

module.exports = middleware;
module.exports = {
logger,
methods,
response,
};
9 changes: 0 additions & 9 deletions lib/index.js

This file was deleted.

Loading

0 comments on commit 5aefdf3

Please sign in to comment.