Skip to content

Commit

Permalink
bump 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frankleng committed May 4, 2021
1 parent 9a69262 commit ddbde13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
File renamed without changes.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "dynamocsv",
"version": "1.0.3",
"version": "1.1.1",
"description": "Export result of dynamodb scans and queries to Node stream",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "dist/dynamocsv.js",
"typings": "dist/types/dynamocsv.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
Expand Down Expand Up @@ -45,7 +48,7 @@
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.13.1",
"@aws-sdk/util-dynamodb": "^3.13.1",
"dynadash": "^1.0.5",
"dynadash": "^1.1.0",
"papaparse": "^5.3.0"
}
}
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true,
"declarationDir": "dist/types",
"typeRoots": [
"node_modules/@types"
],
"outDir": "./dist"
},
"exclude": ["node_modules", "dist", "doc"]
Expand Down

0 comments on commit ddbde13

Please sign in to comment.