refactor: update configuration constants and clean up package scripts
- Modified time configuration constants in appconfig.constant.ts to reflect new operational hours. - Removed linting and prettier scripts from package.json to streamline the build process.
This commit is contained in:
@@ -21,8 +21,6 @@
|
||||
"prisma:studio": "npx prisma studio --schema=./epess-database/prisma/schema.prisma",
|
||||
"biome:check": "biome check",
|
||||
"biome:fix": "biome fix --write",
|
||||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
||||
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:cov": "jest --coverage",
|
||||
|
||||
@@ -22,25 +22,25 @@ export const ConfigConstants: Record<
|
||||
MID_DAY_BREAK_TIME_START: {
|
||||
name: 'Mid Day Break Time Start',
|
||||
key: 'MID_DAY_BREAK_TIME_START',
|
||||
value: '12:00:00',
|
||||
value: '05:00:00',
|
||||
visible: true,
|
||||
},
|
||||
MID_DAY_BREAK_TIME_END: {
|
||||
name: 'Mid Day Break Time End',
|
||||
key: 'MID_DAY_BREAK_TIME_END',
|
||||
value: '13:00:00',
|
||||
value: '06:00:00',
|
||||
visible: true,
|
||||
},
|
||||
DAY_START_TIME: {
|
||||
name: 'Day Start Time',
|
||||
key: 'DAY_START_TIME',
|
||||
value: '08:00:00',
|
||||
value: '01:00:00',
|
||||
visible: true,
|
||||
},
|
||||
DAY_END_TIME: {
|
||||
name: 'Day End Time',
|
||||
key: 'DAY_END_TIME',
|
||||
value: '22:00:00',
|
||||
value: '15:00:00',
|
||||
visible: true,
|
||||
},
|
||||
DEFAULT_COMMISSION: {
|
||||
|
||||
Reference in New Issue
Block a user