Skip to content

Commit

Permalink
aws-dynamodb-local: 0.0.10 -> 0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg committed Oct 15, 2023
1 parent 14b9b5e commit c50fc82
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 803 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,12 +230,11 @@ class ServerlessDynamodbLocal {
}

removeHandler() {
return new Promise((resolve) => dynamodbLocal.remove(resolve));
return dynamodbLocal.remove({ installPath: this.options.localPath });
}

installHandler() {
const options = this.options;
return new Promise((resolve) => dynamodbLocal.install(resolve, options.localPath));
return dynamodbLocal.install({ installPath: this.options.localPath });
}

startHandler() {
Expand Down
Loading

0 comments on commit c50fc82

Please sign in to comment.