Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Aug 7, 2019
1 parent 10a8e52 commit 3b87588
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
13 changes: 11 additions & 2 deletions cli/commands/historical-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,20 @@ export const historicalDataCommand = ({
const query = athenaQuery({
athena,
WorkGroup: WorkGroupName,
logDebug: message => {
debugLog: (...args: any) => {
if (debug) {
console.debug(chalk.gray('[Athena]'), chalk.blue(message))
console.debug(
chalk.gray('[Athena]'),
...args.map((a: any) => chalk.blue(JSON.stringify(a))),
)
}
},
errorLog: (...args: any) => {
console.error(
chalk.red.inverse('[Athena]'),
...args.map((a: any) => chalk.red(JSON.stringify(a))),
)
},
})
const dbs = parseAthenaResult({
ResultSet: await query({
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "MIT",
"dependencies": {
"@bifravst/athena-helpers": "^1.0.2",
"@bifravst/athena-helpers": "^2.0.0",
"aws-iot-device-sdk": "^2.2.1",
"aws-sdk": "^2.504.0",
"backoff": "^2.5.0",
Expand Down Expand Up @@ -59,8 +59,8 @@
"@types/cfn-response": "^1.0.0",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.9",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"cdk": "^1.3.0",
Expand Down

0 comments on commit 3b87588

Please sign in to comment.