Skip to content

Commit c939674

Browse files
[EVOL]: monorepo architecture review
1 parent db9baeb commit c939674

File tree

570 files changed

+2175
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

570 files changed

+2175
-360
lines changed

src/v6y-bfb-devops-auditor/package.json renamed to apps/v6y-bfb-devops-auditor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"build:tsc": "tsc --project ./tsconfig.json",
17-
"start:dev": "nodemon --exec node --env-file=../v6y-commons/.env --loader ts-node/esm src/index.ts -- --dev",
17+
"start:dev": "nodemon --exec node --env-file=./.env --loader ts-node/esm src/index.ts -- --dev",
1818
"start": "pm2 start ecosystem.config.cjs",
1919
"stop": "pm2 stop v6y-bfb-devops-auditor",
2020
"logs": "pm2 logs",
@@ -54,7 +54,7 @@
5454
"vitest": "=2.1.8"
5555
},
5656
"dependencies": {
57-
"@v6y/commons": "workspace:^",
57+
"@v6y/core-logic": "workspace:^",
5858
"axios": "=1.7.9",
5959
"axios-retry": "=4.5.0",
6060
"body-parser": "=1.20.3",

src/v6y-bfb-devops-auditor/src/commons/ServerConfig.ts renamed to apps/v6y-bfb-devops-auditor/src/commons/ServerConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AppLogger } from '@v6y/commons';
1+
import { AppLogger } from '@v6y/core-logic';
22

33
const V6Y_API_PATH = '/v6y/bfb-devops-auditor/';
44
const V6Y_HEALTH_CHECK_PATH = `${V6Y_API_PATH}health-checks`;

src/v6y-bfb-devops-auditor/src/index.ts renamed to apps/v6y-bfb-devops-auditor/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AppLogger, ServerUtils } from '@v6y/commons';
1+
import { AppLogger, ServerUtils } from '@v6y/core-logic';
22
import bodyParser from 'body-parser';
33
import cookieParser from 'cookie-parser';
44
import cors from 'cors';

0 commit comments

Comments
 (0)