-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update lerna, turbo, jest, husky version (#209)
* 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
Showing
5 changed files
with
1,432 additions
and
1,540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
yarn check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ dist | |
**/dist | ||
.yarn/releases | ||
yarn.lock | ||
.turbo | ||
|
||
# generated types | ||
packages/parser/types | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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": "[email protected]", | ||
"workspaces": [ | ||
"packages/**" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": {} | ||
} | ||
} |
Oops, something went wrong.