Skip to content

Commit

Permalink
Merge pull request #36 from AthennaIO/develop
Browse files Browse the repository at this point in the history
chore(npm): update dependencies
  • Loading branch information
jlenon7 authored Oct 26, 2022
2 parents d8f8a65 + 9a89378 commit 3298e6f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
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.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/logger",
"version": "1.3.4",
"version": "1.3.5",
"description": "The Athenna logging solution. Log in stdout, files and buckets.",
"license": "MIT",
"author": "João Lenon <lenon@athenna.io>",
Expand Down Expand Up @@ -49,7 +49,7 @@
"dependencies": {
"@athenna/common": "1.0.0",
"@athenna/config": "1.1.8",
"@athenna/ioc": "1.2.7",
"@athenna/ioc": "1.2.8",
"axios": "0.26.1",
"chalk": "5.0.1",
"telegraf": "4.7.0"
Expand Down Expand Up @@ -134,6 +134,10 @@
"es2021": true,
"node": true
},
"globals": {
"Env": true,
"ioc": true
},
"plugins": [
"prettier"
],
Expand Down
8 changes: 4 additions & 4 deletions tests/Stubs/config/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ export default {
formatter: 'message',
formatterConfig: {},

url: process.env.SLACK_URL,
url: Env('SLACK_URL'),
},
discord: {
driver: 'discord',
formatter: 'message',
formatterConfig: {},

username: 'Athenna',
url: process.env.DISCORD_URL,
url: Env('DISCORD_URL'),
},
telegram: {
driver: 'telegram',
formatter: 'message',
formatterConfig: {},

token: process.env.TELEGRAM_TOKEN,
chatId: process.env.TELEGRAM_CHAT_ID,
token: Env('TELEGRAM_TOKEN'),
chatId: Env('TELEGRAM_CHAT_ID'),
parseMode: 'HTML',
},
},
Expand Down

0 comments on commit 3298e6f

Please sign in to comment.