Skip to content

Commit

Permalink
chore: ts fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
khskekec committed Mar 22, 2022
1 parent 930f1d1 commit 75fcb83
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
23 changes: 21 additions & 2 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@release-it/conventional-changelog": "^4.2.2",
"@types/node-schedule": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-watch": "^7.7.0",
Expand Down
3 changes: 1 addition & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,8 @@ export const DexcomApiClient = ({
attempt += 1;
}, delay);
};
const job = schedule.scheduleJob(`${runPoints.join(',')} * * * *`, proc);

return job;
return schedule.scheduleJob(`${runPoints.join(',')} * * * *`, proc);
};
return {
login,
Expand Down

0 comments on commit 75fcb83

Please sign in to comment.