Closed fizerkhan closed 11 years ago
I have no idea what version of AwsSum you're using or how you're using it. Please provide more info.
@chilts Thanks. I use 1.0.0 Beta. But i did not aware of new plugin architecture. Now it works with new plugin architecture. It will be good if there is any migration steps for old version(< 1.0.0) users.
Ok, thanks. I'll look at putting something on the main awssum/awssum page. Cheers. :)
Thanks mate :+1:
Um, to clarify this issue further, this is what should be in package.json if you are using say S3 and SQS modules:
, "dependencies": {
"awssum" : "1.x"
, "awssum-amazon-sqs" : "1.x"
, "awssum-amazon-s3": "1.x"
}
AND this is how you should initialize variables, INSTEAD of what the current documentation at awssum.io tells you about the module.load() thingie:
var awssum = require('awssum')
, amazon = require('awssum-amazon')
, S3 = require('awssum-amazon-sqs').S3;
, Sqs = require('awssum-amazon-sqs').Sqs;