Compare commits

...

2 Commits

Author SHA1 Message Date
76c02bf3fa 1.1.1
All checks were successful
Publish / Publish npm package action (push) Successful in 42s
2026-03-06 06:41:13 +03:00
2d9fd9e3a2 feat: fix inject order 2026-03-06 06:41:04 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/common",
"version": "1.1.0",
"version": "1.1.1",
"description": "Common library for TeaCinema microservices",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -31,7 +31,7 @@ export class GrpcModule {
return client
},
inject: [ConfigService, GrpcClientFactory]
inject: [GrpcClientFactory, ConfigService]
}
})
],