WIP : setup turborepo
This commit is contained in:
parent
e1616c7bdc
commit
34d77ad588
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,5 +1,5 @@
|
|||
node_modules
|
||||
|
||||
.turbo
|
||||
|
||||
#Ignore vscode AI rules
|
||||
.github/instructions/codacy.instructions.md
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
"build": "nest build",
|
||||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||
"start": "nest start",
|
||||
"dev": "nest start --watch",
|
||||
"start:dev": "nest start --watch",
|
||||
"start:debug": "nest start --debug --watch",
|
||||
"start:prod": "node dist/main",
|
||||
|
|
@ -17,7 +18,8 @@
|
|||
"test:watch": "vitest",
|
||||
"test:cov": "vitest run --coverage",
|
||||
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
||||
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
|
||||
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
|
||||
"check-types": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nestjs/common": "^11.0.1",
|
||||
|
|
|
|||
|
|
@ -19,7 +19,8 @@
|
|||
"test:unit": "vitest --project unit",
|
||||
"test:nuxt": "vitest --project nuxt",
|
||||
"test:e2e": "playwright test",
|
||||
"test:e2e:ui": "playwright test --ui"
|
||||
"test:e2e:ui": "playwright test --ui",
|
||||
"check-types": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@iconify-json/lucide": "^1.2.87",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,6 @@
|
|||
"clean": "turbo clean && rm -rf node_modules"
|
||||
},
|
||||
"devDependencies": {
|
||||
"turbo": "latest"
|
||||
"turbo": "^2.9.16"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2753
pnpm-lock.yaml
2753
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
15
turbo.json
Normal file
15
turbo.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"$schema": "https://turborepo.dev/schema.json",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"outputs": ["dist/**"]
|
||||
},
|
||||
"check-types": {
|
||||
"dependsOn": ["^check-types"]
|
||||
},
|
||||
"dev": {
|
||||
"persistent": true,
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue