Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update dependencies #10

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,777 changes: 1,222 additions & 1,555 deletions .pnp.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# common

Common Modules
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"devDependencies": {
"@atls/config-jest": "^0.0.6",
"@atls/schematics": "^0.0.16",
"@jest/core": "^27.4.7",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"eslint": "^8.7.0",
"husky": "7.0.4",
"@jest/core": "^29.6.2",
"@types/eslint": "^8.20.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"eslint": "8.20.0",
"husky": "8.0.3",
"typescript": "4.5.5"
},
"packageManager": "[email protected]",
Expand Down
8 changes: 4 additions & 4 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@atls/logger",
"repository": "[email protected]:atls/common.git",
"version": "0.0.1",
"repository": "[email protected]:atls/common.git",
"license": "BSD-3 Clause",
"main": "src/index.ts",
"files": [
Expand All @@ -13,11 +13,11 @@
"postpack": "rm -rf dist"
},
"dependencies": {
"pino": "^6.13.4"
"pino": "^8.15.0"
},
"devDependencies": {
"@types/node": "^17.0.12",
"@types/pino": "^6.3.12"
"@types/node": "^20.4.9",
"@types/pino": "^7.0.5"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/src/logger.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @jest-environment node
*/

import { configuration } from './logger.configuration'
import { Logger } from './logger'
import { configuration } from './logger.configuration'

describe('logger', () => {
afterEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/typeorm-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@atls/typeorm-logger",
"repository": "[email protected]:atls/common.git",
"version": "0.0.1",
"repository": "[email protected]:atls/common.git",
"license": "BSD-3 Clause",
"main": "src/index.ts",
"files": [
Expand Down
1 change: 1 addition & 0 deletions packages/typeorm-logger/src/typeorm.logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Logger as ILogger } from 'typeorm'

import { Logger } from '@atls/logger'

export class TypeOrmLogger implements ILogger {
Expand Down
Loading
Loading