Skip to content

Commit

Permalink
HOTFIX(ci): 누락된 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Feb 5, 2025
1 parent 789ab65 commit d9d73b7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"build": "turbo run build --parallel",
"build-storybook": "turbo run build-storybook",
"dev": "turbo run dev",
"lint": "eslint 'packages/**/*.{ts,tsx,js,jsx}' --ext .ts,.tsx,.js,.jsx && prettier --check .",
"lint": "turbo run lint",
"lint:fix": "eslint . --fix && prettier --write .",
"format": "prettier --write .",
"format": "turbo run format",
"clean": "turbo run clean",
"icons": "yarn workspace @zagdang/icons",
"colors": "yarn workspace @zagdang/colors",
"ui": "yarn workspace @zagdang/ui",
"typescript": "tsc --noEmit",
"typescript": "turbo run typescript",
"test": "turbo run test "
},
"workspaces": [
Expand All @@ -39,4 +39,4 @@
"arm64"
]
}
}
}
12 changes: 11 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@
"cache": false,
"persistent": false
},
"format": {
"outputs": [],
"cache": false,
"persistent": false
},
"typescript": {
"outputs": [],
"cache": true,
"persistent": false
},
"dev": {
"cache": false,
"persistent": true
Expand All @@ -36,4 +46,4 @@
"persistent": false
}
}
}
}

0 comments on commit d9d73b7

Please sign in to comment.