-
Notifications
You must be signed in to change notification settings - Fork 1
Upgrade to pnpm v10.20 & add minimumReleaseAge #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,2 @@ | ||
| publish-branch=main | ||
| access=public | ||
| ignore-scripts=true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,19 +49,19 @@ | |
| "storybook:publish": "gh-pages -b storybook/publish -d storybook-static" | ||
| }, | ||
| "dependencies": { | ||
| "@mui/icons-material": "^7.0.0", | ||
| "keycloak-js": "^26.2.1", | ||
| "react-icons": "^5.3.0", | ||
| "utif": "^3.1.0", | ||
| "@mui/icons-material": "^7.0.0" | ||
| "utif": "^3.1.0" | ||
| }, | ||
| "peerDependencies": { | ||
| "@emotion/react": "^11.13.3", | ||
| "@emotion/styled": "^11.13.0", | ||
| "@jsonforms/core": "^3.7.0", | ||
| "@jsonforms/material-renderers": "^3.7.0", | ||
| "@jsonforms/react": "^3.7.0", | ||
| "@mui/material": "^7.0.0", | ||
| "@mui/icons-material": "^7.0.0", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We appear to have this both in dependencies and peerDependencies... I was speaking to Guilherme about something related, and he said icons are fine under dependencies, as they (should) only include the icons we are using. |
||
| "@mui/material": "^7.0.0", | ||
| "react": "^18.3.1" | ||
| }, | ||
| "devDependencies": { | ||
|
|
@@ -71,6 +71,7 @@ | |
| "@babel/preset-typescript": "^7.26.10", | ||
| "@chromatic-com/storybook": "^3.2.2", | ||
| "@eslint/eslintrc": "^3.2.0", | ||
| "@eslint/js": "^10.0.1", | ||
| "@rollup/plugin-commonjs": "^28.0.1", | ||
| "@rollup/plugin-image": "^3.0.3", | ||
| "@rollup/plugin-json": "^6.1.0", | ||
|
|
@@ -120,6 +121,7 @@ | |
| }, | ||
| "pnpm": { | ||
| "overrides": { | ||
| "fast-uri": "^3.1.2", | ||
| "lodash": "^4.18.1", | ||
| "qs@>=6.13.0 <6.14.0": "6.14.1", | ||
| "js-yaml@^4.1.0": "4.1.1", | ||
|
|
@@ -130,5 +132,5 @@ | |
| "webpack@^5.0.0": "5.104.1" | ||
| } | ||
| }, | ||
| "packageManager": "pnpm@9.12.3+sha256.24235772cc4ac82a62627cd47f834c72667a2ce87799a846ec4e8e555e2d4b8b" | ||
| "packageManager": "pnpm@10.20.0" | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ignoreScripts: true | ||
| minimumReleaseAge: 10080 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guilherme mentioned moving this to peer. I'm in two minds about it. Do you have an opinion?
(I'm asking under this MR, because I assume it's better to move it to peer so that it is easier to overwrite downstream?)