-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Replace package manager yarn to pnpm (#1140)
- Loading branch information
Showing
15 changed files
with
16,571 additions
and
19,708 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,5 +1,5 @@ | ||
.cache | ||
.yarn | ||
pnpm-lock.yaml | ||
public | ||
src/generated | ||
static | ||
|
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,5 +1,4 @@ | ||
/.cache linguist-generated=true | ||
/.yarn linguist-generated=true | ||
/public/* linguist-generated=true | ||
/src/generated/* linguist-generated=true | ||
/yarn.lock linguist-generated=true | ||
/pnpm-lock.yaml linguist-generated=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
yarn lint && yarn format | ||
pnpm run lint && pnpm run format |
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 @@ | ||
sonar.exclusions=.cache/**/*,.yarn/**/*,/public,src/generated/**/* | ||
sonar.exclusions=.cache/**/*,/pnpm-lock.yaml,/public,src/generated/**/* |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -10,19 +10,22 @@ | |
"serve": "gatsby serve --port 20014", | ||
"clean": "gatsby clean", | ||
"lint": "eslint --cache --ignore-path .eslintignore --ext .js,.ts,.tsx .", | ||
"lint:fix": "yarn lint --fix", | ||
"lint:fix": "pnpm run lint --fix", | ||
"format": "prettier --cache --ignore-path .eslintignore --write .", | ||
"graphql": "graphql-codegen", | ||
"typecheck": "tsc -p . --noEmit", | ||
"deploy": "gatsby-plugin-s3 deploy", | ||
"prepare": "husky" | ||
"prepare": "husky", | ||
"preinstall": "npx only-allow pnpm" | ||
}, | ||
"dependencies": { | ||
"@emotion/is-prop-valid": "1.3.0", | ||
"@emotion/react": "11.13.3", | ||
"@emotion/styled": "11.13.0", | ||
"@mui/icons-material": "5.16.7", | ||
"@mui/lab": "5.0.0-alpha.173", | ||
"@mui/material": "5.16.7", | ||
"@mui/utils": "6.1.0", | ||
"@sentry/browser": "8.30.0", | ||
"bicstone": "1.4.0", | ||
"date-fns": "3.6.0", | ||
|
@@ -91,8 +94,11 @@ | |
"last 3 iOS major versions" | ||
], | ||
"volta": { | ||
"node": "20.17.0" | ||
}, | ||
"engines": { | ||
"node": "20.17.0", | ||
"yarn": "4.5.0" | ||
"pnpm": "9.7.0" | ||
}, | ||
"packageManager": "[email protected].0" | ||
"packageManager": "[email protected].0" | ||
} |
Oops, something went wrong.