Skip to content

Commit 6c6726f

Browse files
committed
fix: bump deps and add bugsnag info
1 parent 3cef20c commit 6c6726f

File tree

3 files changed

+221
-209
lines changed

3 files changed

+221
-209
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
"license": "SEE LICENSE IN LICENSE.md",
1717
"devDependencies": {
1818
"@jgoz/esbuild-plugin-typecheck": "2.0.0",
19-
"@semantic-release/changelog": "6.0.1",
19+
"@semantic-release/changelog": "6.0.2",
2020
"@semantic-release/exec": "6.0.3",
2121
"@types/crypto-js": "4.1.1",
22-
"@types/node": "18.11.9",
22+
"@types/node": "18.11.10",
2323
"@types/twitter-autohook": "1.7.0",
24-
"@typescript-eslint/eslint-plugin": "5.44.0",
25-
"@typescript-eslint/parser": "5.44.0",
24+
"@typescript-eslint/eslint-plugin": "5.45.0",
25+
"@typescript-eslint/parser": "5.45.0",
2626
"commitizen": "4.2.5",
2727
"concurrently": "7.6.0",
2828
"cz-conventional-changelog": "3.3.0",
29-
"esbuild": "0.15.15",
29+
"esbuild": "0.15.16",
3030
"eslint": "8.28.0",
3131
"eslint-config-airbnb-base": "15.0.0",
3232
"eslint-plugin-import": "2.26.0",
@@ -38,10 +38,10 @@
3838
"dependencies": {
3939
"@bugsnag/js": "7.18.0",
4040
"@doist/todoist-api-typescript": "2.1.2",
41-
"axios": "1.1.3",
41+
"axios": "1.2.0",
4242
"crypto-js": "4.1.1",
4343
"dotenv": "16.0.3",
44-
"mongoose": "6.7.2",
44+
"mongoose": "6.7.5",
4545
"twitter-api-v2": "1.12.9"
4646
},
4747
"engines": {

src/services/bugsnag.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import Bugsnag from '@bugsnag/js';
22

3-
Bugsnag.start(process.env.BUGSNAG_API_KEY || '');
3+
Bugsnag.start( {
4+
apiKey: process.env.BUGSNAG_API_KEY || '',
5+
appVersion: 'oauth-service',
6+
});
47

5-
export default Bugsnag;
8+
export default Bugsnag;

0 commit comments

Comments
 (0)