Skip to content

Commit 8ee950f

Browse files
committed
🐛 chore: fix init script
1 parent 6258f92 commit 8ee950f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

cli/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const parsedOptions = parseArgs(process.argv.slice(2),{
2424
const options = Object.entries(parsedOptions).reduce((acc, [key, value]) => {
2525
if (['tableNames','n'].includes(key)) {
2626
acc[key] = value.split(',');
27+
} else {
28+
acc[key] = value;
2729
}
2830
return acc;
2931
},{});

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamo-data-transform",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "DynamoDB Data Transformation Tool",
55
"main": "./index.js",
66
"repository": "https://github.com/jitsecurity/dynamo-data-transform",

0 commit comments

Comments
 (0)