-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dynamodb revisionGuardStore implementation #58
Conversation
I'm pretty sure "aws-sdk" should be in devDependencies section, as well as this line should be : aws = Store.use('aws-sdk'); in order to not make it hard dependency. |
package.json
Outdated
@@ -12,6 +12,7 @@ | |||
}, | |||
"dependencies": { | |||
"async": "1.5.2", | |||
"aws-sdk": "2.94.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move this to devDependencies, please
async = require('async'), | ||
_ = require('lodash'), | ||
uuid = require('uuid').v4, | ||
aws = require('aws-sdk'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please write it that way: aws = Store.use('aws-sdk');
@emmkong seen the comments? |
No description provided.