-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing pnpm catalogs being removed from lockfile during update (#11471)
- Loading branch information
Showing
9 changed files
with
6,285 additions
and
40 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
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
24 changes: 24 additions & 0 deletions
24
npm_and_yarn/spec/fixtures/projects/pnpm/catalog_monorepo/apps/auth-proxy/package.json
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,24 @@ | ||
{ | ||
"name": "@acme/auth-proxy", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"build": "nitro build", | ||
"clean": "git clean -xdf .cache .nitro .output .turbo .vercel node_modules", | ||
"lint": "eslint", | ||
"format": "prettier --check . --ignore-path ../../.gitignore", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@auth/core": "0.37.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.17.7", | ||
"eslint": "catalog:", | ||
"h3": "^1.13.0", | ||
"nitropack": "^2.10.4", | ||
"prettier": "catalog:", | ||
"typescript": "catalog:" | ||
}, | ||
"prettier": "@acme/prettier-config" | ||
} |
33 changes: 33 additions & 0 deletions
33
npm_and_yarn/spec/fixtures/projects/pnpm/catalog_monorepo/package.json
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,33 @@ | ||
{ | ||
"name": "create-t3-turbo", | ||
"private": true, | ||
"engines": { | ||
"node": ">=20.18.1", | ||
"pnpm": "^9.14.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "turbo run build", | ||
"clean": "git clean -xdf node_modules", | ||
"clean:workspaces": "turbo run clean", | ||
"db:push": "turbo -F @acme/db push", | ||
"db:studio": "turbo -F @acme/db studio", | ||
"dev": "turbo watch dev --continue", | ||
"dev:next": "turbo watch dev -F @acme/nextjs...", | ||
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache", | ||
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache", | ||
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache", | ||
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache", | ||
"lint:ws": "pnpm dlx sherif@latest", | ||
"postinstall": "pnpm lint:ws", | ||
"typecheck": "turbo run typecheck", | ||
"ui-add": "turbo run ui-add" | ||
}, | ||
"devDependencies": { | ||
"@turbo/gen": "^2.3.3", | ||
"prettier": "catalog:", | ||
"turbo": "^2.3.3", | ||
"typescript": "catalog:" | ||
}, | ||
"prettier": "@acme/prettier-config" | ||
} |
Oops, something went wrong.