Skip to content

Commit 46f2088

Browse files
authored
[core] Resolve pnpm peer dep warnings (#369)
1 parent a3d3b17 commit 46f2088

File tree

7 files changed

+449
-362
lines changed

7 files changed

+449
-362
lines changed

apps/local-ui-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@pigment-css/react": "file:../../packages/pigment-css-react"
6+
"@pigment-css/react": "workspace:*"
77
}
88
}

apps/local-ui-lib/tsconfig.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
{
2-
"extends": "../../tsconfig.json",
3-
"references": [
4-
{
5-
"path": "../../packages/pigment-css-react"
6-
}
7-
]
2+
"extends": "../../tsconfig.json"
83
}

apps/pigment-css-next-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"@mui/material": "^6.1.6",
1414
"@mui/material-nextjs": "^6.1.6",
1515
"local-ui-lib": "workspace:^",
16-
"react": "^18.3.1",
17-
"react-dom": "^18.3.1",
18-
"next": "15.0.2"
16+
"react": "^19.0.0",
17+
"react-dom": "^19.0.0",
18+
"next": "15.1.3"
1919
},
2020
"devDependencies": {
2121
"@pigment-css/nextjs-plugin": "workspace:^",
2222
"@types/node": "^18.19.63",
23-
"@types/react": "^18.3.12",
24-
"@types/react-dom": "^18.3.1",
23+
"@types/react": "^19.0.2",
24+
"@types/react-dom": "^19.0.2",
2525
"eslint": "^8.57.0",
2626
"typescript": "^5.4.4"
2727
},

package.json

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"react-dom": "18.3.1",
113113
"react-docgen": "^5.4.3",
114114
"remark": "^13.0.0",
115-
"rimraf": "^5.0.5",
115+
"rimraf": "^6.0.1",
116116
"serve": "^14.2.1",
117117
"stylelint": "^16.3.1",
118118
"stylelint-config-standard": "^36.0.0",
@@ -126,30 +126,6 @@
126126
"engines": {
127127
"pnpm": "9.7.1"
128128
},
129-
"resolutions": {
130-
"@babel/core": "^7.26.0",
131-
"@babel/code-frame": "^7.26.2",
132-
"@babel/plugin-proposal-class-properties": "^7.18.6",
133-
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
134-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
135-
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
136-
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
137-
"@babel/plugin-transform-destructuring": "^7.25.9",
138-
"@babel/plugin-transform-runtime": "^7.25.9",
139-
"@babel/preset-env": "^7.26.0",
140-
"@babel/preset-react": "^7.25.9",
141-
"@babel/preset-typescript": "^7.26.0",
142-
"@babel/runtime": "^7.26.0",
143-
"@babel/types": "^7.26.0",
144-
"@definitelytyped/header-parser": "^0.2.8",
145-
"@definitelytyped/typescript-versions": "^0.1.1",
146-
"@definitelytyped/utils": "^0.1.5",
147-
"@types/node": "^18.19.63",
148-
"@types/react": "^18.3.12",
149-
"@types/react-dom": "18.3.1",
150-
"react": "18.3.1",
151-
"react-dom": "18.3.1"
152-
},
153129
"nyc": {
154130
"include": [
155131
"packages/mui*/src/**/*.{js,ts,tsx}"

packages/pigment-css-nextjs-plugin/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
"@pigment-css/unplugin": "workspace:^"
3232
},
3333
"devDependencies": {
34-
"next": "^15.0.1"
34+
"next": "^15.1.3",
35+
"react": "^19.0.0",
36+
"react-dom": "^19.0.0"
3537
},
3638
"peerDependencies": {
3739
"next": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0"

packages/pigment-css-react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@
7373
"react": "^18.3.1"
7474
},
7575
"peerDependencies": {
76-
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
76+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
77+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
7778
},
7879
"sideEffects": false,
7980
"publishConfig": {

0 commit comments

Comments
 (0)