Skip to content

Commit

Permalink
Merge pull request #35 from nemuvski/peer-deps-react19
Browse files Browse the repository at this point in the history
React v19をpeerDepsに含める
nemuvski authored Dec 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents e725887 + e825744 commit bbbdd50
Showing 3 changed files with 87 additions and 326 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -25,13 +25,14 @@
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@local/tsconfig": "workspace:*",
"@testing-library/react": "^16.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.1.6",
"jsdom": "^25.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.0.2",
"turbo": "^2.3.3",
26 changes: 18 additions & 8 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -17,8 +17,14 @@
"bugs": {
"url": "https://github.com/nemuvski/itsumono/issues"
},
"keywords": ["typescript", "utilities", "react"],
"files": ["dist/**"],
"keywords": [
"typescript",
"utilities",
"react"
],
"files": [
"dist/**"
],
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -28,22 +34,26 @@
"build": "tsup src/ --format=esm,cjs --dts"
},
"devDependencies": {
"@types/react": "^18.2.60",
"react": "^18.2.0"
"@types/react": "^19.0.1",
"react": "^19.0.0"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^18.0.0"
"@types/react": "^18.0.0 || ^19.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"tsup": {
"entry": ["src/index.ts"],
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": false,
"minify": true,
"clean": true
},
"typedocOptions": {
"entryPoints": ["./src/index.ts"],
"entryPoints": [
"./src/index.ts"
],
"readme": "./README.md"
}
}
380 changes: 65 additions & 315 deletions pnpm-lock.yaml

0 comments on commit bbbdd50

Please sign in to comment.