-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #340 from lishaduck/turbo-fix
Dependencies + turborepo fixes
- Loading branch information
Showing
20 changed files
with
67 additions
and
266 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 @@ | ||
* text=auto eol=lf |
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 +1 @@ | ||
link-workspace-packages=false | ||
disallow-workspace-cycles=true |
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,3 @@ | ||
{ | ||
"singleQuote": true, | ||
"endOfLine": "auto" | ||
"singleQuote": true | ||
} |
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
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
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
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 |
---|---|---|
|
@@ -2,15 +2,16 @@ | |
"name": "sheriff-monorepo", | ||
"private": true, | ||
"scripts": { | ||
"dev": "turbo watch build-watch start", | ||
"dev": "turbo watch eslint-config-sheriff#build @sherifforg/create-config#build start", | ||
"dev:norebuild": "turbo start", | ||
"build": "turbo run build", | ||
"playground": "pnpm --filter=cli-playground exec create-config", | ||
"playground:mimic-monorepo": "pnpm exec create-config --filter=cli-playground", | ||
"playground:cli-checks": "pnpm --filter=cli-playground exec sheriff", | ||
"webservices:deploy": "turbo run serve --filter=sheriff-webservices", | ||
"preview-docs": "turbo run serve --filter=docs-website", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"", | ||
"format": "prettier . --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn", | ||
"format:check": "prettier . --check --cache --cache-location='node_modules/.cache/.prettiercache'", | ||
"lint": "turbo run lint", | ||
"publint": "turbo run publint --concurrency=1", | ||
"are-the-types-wrong": "turbo run are-the-types-wrong", | ||
|
@@ -19,7 +20,7 @@ | |
"typecheck": "turbo run typecheck", | ||
"knip": "knip", | ||
"validate-config": "turbo run validate-config", | ||
"merge-checks": "pnpm build && turbo run publint manypkg typesync knip typecheck lint validate-config are-the-types-wrong && turbo run check-deduped-deps", | ||
"merge-checks": "pnpm build && turbo run publint manypkg typesync knip typecheck lint format:check validate-config are-the-types-wrong && turbo run check-deduped-deps", | ||
"check-deduped-deps": "pnpm dedupe --check", | ||
"clean": "turbo run clean && rm -rf .turbo", | ||
"delete-node-modules": "pnpm exec rm -rf node_modules && pnpm -r exec rm -rf node_modules", | ||
|
@@ -40,18 +41,24 @@ | |
"turbo": "^2.2.3", | ||
"typesync": "0.13.0" | ||
}, | ||
"packageManager": "[email protected].1", | ||
"packageManager": "[email protected].2", | ||
"engines": { | ||
"node": ">=20.10.0" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"allowAny": [ | ||
"typescript" | ||
], | ||
"allowedVersions": { | ||
"eslint": "^9.0.0", | ||
"typescript": "^5.0.0" | ||
}, | ||
"ignoreMissing": [ | ||
"vitest" | ||
] | ||
} | ||
}, | ||
"onlyBuiltDependencies": [ | ||
"@swc/core", | ||
"esbuild", | ||
"sharp" | ||
] | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.