copy-dynamodb-table
Advanced tools
Comparing version 2.0.10 to 2.0.11
'use strict' | ||
var AWS = require('aws-sdk') | ||
var validate = require('./validate') | ||
var readline = require('readline') | ||
@@ -154,4 +155,4 @@ function copy(values, fn) { | ||
options.destination.createTableStr += '.' | ||
process.stdout.clearLine() | ||
process.stdout.cursorTo(0) | ||
readline.clearLine(process.stdout) | ||
readline.cursorTo(process.stdout, 0) | ||
process.stdout.write(options.destination.createTableStr) | ||
@@ -182,4 +183,4 @@ } | ||
if (options.log) { | ||
process.stdout.clearLine() | ||
process.stdout.cursorTo(0) | ||
readline.clearLine(process.stdout) | ||
readline.cursorTo(process.stdout, 0) | ||
process.stdout.write('Copied ' + options.counter + ' items') | ||
@@ -186,0 +187,0 @@ } |
{ | ||
"name": "copy-dynamodb-table", | ||
"version": "2.0.10", | ||
"version": "2.0.11", | ||
"description": "Copy Dynamodb table to another in the same or different zone , It is 100% safe , and speed depends on your destination table user defined write provisioned throughput", | ||
@@ -22,3 +22,4 @@ "keywords": [ | ||
"dependencies": { | ||
"aws-sdk": "^2.56.0" | ||
"aws-sdk": "^2.56.0", | ||
"readline": "^1.3.0" | ||
}, | ||
@@ -25,0 +26,0 @@ "devDependencies": { |
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
15374
333
2
+ Addedreadline@^1.3.0
+ Addedreadline@1.3.0(transitive)