fix(core): made the project run from the monorepo

This commit is contained in:
Nicolas HOARAU 2026-06-01 01:05:27 +04:00
parent 63fee9b1ad
commit a6df485827
3 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start", "start": "nest start",
"start:dev": "nest start --watch", "start:dev": "nest start --watch",
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch", "start:debug": "nest start --debug --watch",
"start:prod": "node dist/main", "start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",

View file

@ -3,6 +3,6 @@ import { AppModule } from './app.module';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AppModule); const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3000); await app.listen(process.env.PORT ?? 3001);
} }
bootstrap(); bootstrap();

View file

@ -30,5 +30,5 @@
"typescript": "^6.0.3", "typescript": "^6.0.3",
"vue-tsc": "^3.3.0" "vue-tsc": "^3.3.0"
}, },
"packageManager": "pnpm@11.1.3" "packageManager": "pnpm@9.0.0"
} }