-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix circular dependencies and migrate to turbo (#151)
Finally got fed up with the build/test cycle not doing what I wanted. Matching format of connectrpc/connect-playwright - Remove requirement to manually test plugins - Fixed circular dependencies and migrated to turbo - More turbo
- Loading branch information
1 parent
524b051
commit 051a215
Showing
19 changed files
with
124 additions
and
704 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
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,4 +1,8 @@ | ||
node_modules | ||
/packages/*/dist | ||
/packages/*/coverage | ||
*.tsbuildinfo | ||
*.tsbuildinfo | ||
.turbo | ||
|
||
!/packages/generated-react/dist | ||
/packages/generated-react/dist/descriptorset.bin |
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 |
---|---|---|
|
@@ -3,18 +3,16 @@ | |
"name": "root", | ||
"repository": "[email protected]:connectrpc/connect-query-es.git", | ||
"scripts": { | ||
"build": "pnpm --recursive build", | ||
"generate": "pnpm --recursive generate", | ||
"test": "pnpm --recursive test", | ||
"lint": "pnpm run lint:code && pnpm run lint:markdown && pnpm run lint:spelling", | ||
"lint:fix": "pnpm run lint:code:fix && pnpm run lint:markdown:fix && pnpm run lint:spelling", | ||
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\"", | ||
"lint:markdown:fix": "markdownlint-cli2-fix \"**/*.md\" \"#**/node_modules\"", | ||
"lint:spelling": "cspell \"**\" --gitignore", | ||
"lint:code": "eslint . && prettier . --check && license-header --check", | ||
"lint:code:fix": "eslint . --fix && prettier . --write && license-header", | ||
"all": "pnpm run build && pnpm run generate && pnpm run lint:fix && pnpm run test", | ||
"update-all": "pnpm outdated --recursive || pnpm update --recursive --latest && pnpm outdated --recursive" | ||
"build": "turbo run build", | ||
"generate": "turbo run generate", | ||
"test": "turbo run test", | ||
"format": "turbo run format:all", | ||
"format:all": "pnpm run format:code && pnpm run format:markdown && pnpm run check:spelling", | ||
"format:markdown": "markdownlint-cli2-fix \"**/*.md\" \"#**/node_modules\"", | ||
"check:spelling": "cspell \"**\" --gitignore", | ||
"format:code": "eslint . --fix && prettier . --write && license-header", | ||
"all": "turbo run build generate format:all test", | ||
"update-all": "pnpm update --recursive --latest" | ||
}, | ||
"license": "Apache-2.0", | ||
"licenseHeader": { | ||
|
@@ -46,6 +44,7 @@ | |
"prettier": "3.0.2", | ||
"ts-jest": "29.1.1", | ||
"ts-node": "10.9.1", | ||
"turbo": "^1.10.13", | ||
"typescript": "5.1.6" | ||
}, | ||
"engineStrict": true, | ||
|
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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
This file was deleted.
Oops, something went wrong.
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
97 changes: 0 additions & 97 deletions
97
packages/protoc-gen-connect-query-react/src/generateDts.test.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.