idea-toolbox
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -60,3 +60,3 @@ 'use strict'; | ||
if(currentChunk+chunksSize < batchOps.length) | ||
dynamoBatchOperation(batchOps, table, currentChunk+chunksSize, chunksSize, doneCb); | ||
dynamoBatchOperation(dynamo, batchOps, table, currentChunk+chunksSize, chunksSize, doneCb); | ||
// no more chunks to manage: we're done | ||
@@ -81,5 +81,5 @@ else doneCb(batchOps.length); | ||
scanParams.ExclusiveStartKey = data.LastEvaluatedKey; | ||
dynamoScanOverLimit(scanParams, items, callback); | ||
dynamoQueryOverLimit(dynamo, scanParams, callback, items); | ||
} else callback(null, items); | ||
}); | ||
} |
{ | ||
"name": "idea-toolbox", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "IDEA's utility functions", | ||
@@ -5,0 +5,0 @@ "engines": { |
@@ -7,3 +7,8 @@ # IDEA's toolbox | ||
## Release a new version on npm | ||
1. Commit the changes on GitHub | ||
1. Update the versions (find and replace, e.g. 0.0.1 -> 0.0.2) | ||
1. Release the new version on npm with `npm publish` | ||
## References | ||
- https://medium.com/@jdaudier/how-to-create-and-publish-your-first-node-js-module-444e7585b738 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6165
13