Skip to content

Commit

Permalink
fix: lint and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Apoorva64 committed Sep 24, 2024
1 parent 0bb05fe commit 90bfc6e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion libs/clients/dining/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@spos/clients/dining",
"name": "@spos/clients-dining",
"version": "0.0.1",
"dependencies": {
"tslib": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/clients/kitchen/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@spos/clients/kitchen",
"name": "@spos/clients-kitchen",
"version": "0.0.1",
"dependencies": {
"tslib": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/clients/menu/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@spos/clients/menu",
"name": "@spos/clients-menu",
"version": "0.0.1",
"dependencies": {
"tslib": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/services/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tslib": "^2.3.0",
"uuid": "^10.0.0",
"typedi": "^0.10.0",
"@spos/clients/dining": "^0.0.1"
"@spos/clients-dining": "^0.0.1"
},
"type": "commonjs",
"main": "./src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion libs/services/common/src/lib/group/groupService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Service } from 'typedi';
import { v4 as uuidv4 } from 'uuid';
import { TableOrdersApi } from '@spos/clients/dining';
import { TableOrdersApi } from '@spos/clients-dining';

export interface Group {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion libs/services/common/src/lib/table/table.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Service } from 'typedi';
import { TableOrdersApi, TablesApi } from '@spos/clients/dining';
import { TableOrdersApi, TablesApi } from '@spos/clients-dining';

@Service()
export class TableService {
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@spos/clients/dining": ["libs/clients/dining/src/index.ts"],
"@spos/clients/kitchen": ["libs/clients/kitchen/src/index.ts"],
"@spos/clients/menu": ["libs/clients/menu/src/index.ts"],
"@spos/clients-dining": ["libs/clients/dining/src/index.ts"],
"@spos/clients-kitchen": ["libs/clients/kitchen/src/index.ts"],
"@spos/clients-menu": ["libs/clients/menu/src/index.ts"],
"@spos/services/common": ["libs/services/common/src/index.ts"],
"@spos/ui/common": ["libs/ui/common/src/index.ts"]
}
Expand Down

0 comments on commit 90bfc6e

Please sign in to comment.