Skip to content

Commit

Permalink
chore: update lerna, turbo, jest, husky version (#209)
Browse files Browse the repository at this point in the history
* chore: bump turbo version to 2.0.11

* ignore .turbo

* chore: bump lerna version to 8.1.8

* chore: bump jest version to 29.7.0

* chore: bump husky version to 9.1.4

* chore: update husky

* chore: change to pre-push
  • Loading branch information
yeonjuan authored Aug 6, 2024
1 parent 6b933b3 commit d9a0186
Show file tree
Hide file tree
Showing 5 changed files with 1,432 additions and 1,540 deletions.
1 change: 1 addition & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarn check
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dist
**/dist
.yarn/releases
yarn.lock
.turbo

# generated types
packages/parser/types
Expand Down
16 changes: 6 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"check:format": "prettier --check .",
"check:spell": "cspell --config .cspell.json \"**/*.{js,ts,tsx,md,html}\" --quiet",
"check": "yarn test && yarn check:format && yarn check:spell && yarn check:ts",
"publish:website": "yarn workspace website deploy"
"publish:website": "yarn workspace website deploy",
"prepare": "husky"
},
"author": "yeonjuan",
"license": "MIT",
Expand All @@ -25,22 +26,17 @@
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.0",
"jest": "^27.3.1",
"lerna": "^8.1.4",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^2.4.1",
"turbo": "^1.11.3",
"turbo": "^2.0.11",
"typescript": "^4.4.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"npm": ">=7"
},
"husky": {
"hooks": {
"pre-push": "yarn check"
}
},
"packageManager": "yarn@4.0.2",
"workspaces": [
"packages/**"
Expand Down
14 changes: 10 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": { "dependsOn": ["^build"] },
"tasks": {
"build": {
"dependsOn": ["^build"]
},
"lint": {},
"dev": {
"dependsOn": ["^dev"]
},
"test": { "dependsOn": ["^build"] },
"ts": { "dependsOn": ["^build"] },
"test": {
"dependsOn": ["^build"]
},
"ts": {
"dependsOn": ["^build"]
},
"docs": {}
}
}
Loading

0 comments on commit d9a0186

Please sign in to comment.