Skip to content

Commit

Permalink
refactor(deps): move loopback deps to dev dependencies
Browse files Browse the repository at this point in the history
and use the binding type from loopback/context instead of loopback/core

GH-0
  • Loading branch information
shubhamp-sf committed Jul 24, 2024
1 parent 29dba9d commit 524e1f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions services/orchestrator-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
"!*/__tests__"
],
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@loopback/core": ">=6"
},
"devDependencies": {
"@loopback/boot": "^7.0.3",
"@loopback/context": "^7.0.3",
"@loopback/core": "^6.1.0",
Expand All @@ -65,9 +71,6 @@
"dotenv-extended": "^2.9.0",
"swagger-stats": "^0.99.7",
"symlink-resolver": "0.2.1",
"tslib": "^2.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@loopback/build": "^11.0.3",
"@loopback/eslint-config": "^15.0.3",
Expand Down
2 changes: 1 addition & 1 deletion services/orchestrator-service/src/component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {
Binding,
Component,
Constructor,
ControllerClass,
Expand All @@ -10,6 +9,7 @@ import {
ProviderMap,
ServiceOrProviderClass,
} from '@loopback/core';
import {Binding} from '@loopback/context';
import {OrchestratorServiceBindings} from './services/types';
import {
BuilderService,
Expand Down

0 comments on commit 524e1f0

Please sign in to comment.