-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch to pnpm instead of yarn (#1653)
* chore: switch to pnpm instead of yarn Fixes #1652 Signed-off-by: Jeff MAURY <[email protected]> * fix: increase memory size for eslint Signed-off-by: Jeff MAURY <[email protected]> * fix: add missing dependency Signed-off-by: Jeff MAURY <[email protected]> * fix: update pnpm lock file Signed-off-by: Jeff MAURY <[email protected]> * fix: add svelte to workspace dev dependencies to fix lint issue Signed-off-by: Jeff MAURY <[email protected]> * fix: use pnpm 9.9.0 Signed-off-by: Jeff MAURY <[email protected]> * fix: update node configuration Signed-off-by: Jeff MAURY <[email protected]> * fix: add missing pnpm-workspace.yaml Signed-off-by: Jeff MAURY <[email protected]> * fix: update pnpm-lock.yaml Signed-off-by: Jeff MAURY <[email protected]> * fix: update pnpm-lock.yaml Signed-off-by: Jeff MAURY <[email protected]> * fix: revert postman-code-generators to 1.10.1 Signed-off-by: Jeff MAURY <[email protected]> * fix: remove unneeded root dependency Signed-off-by: Jeff MAURY <[email protected]> --------- Signed-off-by: Jeff MAURY <[email protected]>
- Loading branch information
Showing
11 changed files
with
9,996 additions
and
7,828 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
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,2 @@ | ||
node-linker=hoisted | ||
|
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,8 +11,8 @@ | |
"npm": ">=10.2.3" | ||
}, | ||
"scripts": { | ||
"build": "concurrently \"yarn --cwd packages/frontend build\" \"yarn --cwd packages/backend build\"", | ||
"watch": "concurrently \"yarn --cwd packages/frontend watch\" \"yarn --cwd packages/backend watch\"", | ||
"build": "concurrently \"cd packages/frontend && npm run build\" \"cd packages/backend && npm run build\"", | ||
"watch": "concurrently \"cd packages/frontend && npm run watch\" \"cd packages/backend && npm run watch\"", | ||
"format:check": "prettier --check \"**/src/**/*.{ts,svelte}\"", | ||
"format:fix": "prettier --write \"**/src/**/*.{ts,svelte}\"", | ||
"lint:check": "eslint . --cache", | ||
|
@@ -25,12 +25,13 @@ | |
"test:e2e": "cd tests/playwright && npm run test:e2e", | ||
"typecheck:shared": "tsc --noEmit --project packages/shared", | ||
"typecheck:frontend": "tsc --noEmit --project packages/frontend", | ||
"typecheck:backend": "yarn --cwd packages/backend typecheck", | ||
"typecheck:backend": "cd packages/backend && npm run typecheck", | ||
"typecheck": "npm run typecheck:shared && npm run typecheck:frontend && npm run typecheck:backend" | ||
}, | ||
"resolutions": { | ||
"string-width": "^4.2.0", | ||
"wrap-ansi": "^7.0.0" | ||
"wrap-ansi": "^7.0.0", | ||
"postman-code-generators": "1.10.1" | ||
}, | ||
"devDependencies": { | ||
"@eslint/compat": "^1.1.1", | ||
|
@@ -68,5 +69,6 @@ | |
}, | ||
"dependencies": { | ||
"js-yaml": "^4.1.0" | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1" | ||
} |
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.