Skip to content

Commit

Permalink
Merge pull request #220 from ttaerrim/turbo
Browse files Browse the repository at this point in the history
[Feat] turbo 설정 추가
  • Loading branch information
ttaerrim authored Nov 29, 2023
2 parents 3a0e289 + 28327a7 commit 9eb503c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"dev:test": "vite --mode test",
"build": "tsc && vite build",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"prettier": "prettier --write .",
Expand Down
24 changes: 21 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"]
}
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"outputs": ["dist/**"]
},
"start": {},
"start:dev": {},
"start:debug": {},
"start:prod": {},
"test": {},
"test:watch": {},
"test:cov": {},
"test:debug": {},
"test:e2e": {},
"dev": {},
"dev:test": {},
"lint": {},
"lint:fix": {}
}
}

0 comments on commit 9eb503c

Please sign in to comment.