-
Notifications
You must be signed in to change notification settings - Fork 233
Support React 18 #655
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
Support React 18 #655
Changes from 11 commits
9172654
6456f4a
0d82a5f
81db73a
1f0bf1d
3cc6f2e
15347e5
25cfd74
668088b
8fa0041
c95ef45
00526a8
c060620
d4ba70c
2b4a770
ea9d4f9
274932b
9f296b1
07041f1
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 |
---|---|---|
|
@@ -33,7 +33,6 @@ | |
"scripts": { | ||
"setup": "npm install && npm run validate -s", | ||
"validate": "kcd-scripts validate", | ||
"prepare": "npm run build", | ||
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. I'm not sure what else we'll need to do now that I've removed this because of https://docs.npmjs.com/cli/v7/commands/npm-install
|
||
"build": "kcd-scripts build --out-dir lib && npm run generate:submodules", | ||
"generate:submodules": "ts-node scripts/generate-submodules.ts", | ||
"test": "kcd-scripts test", | ||
|
@@ -43,7 +42,9 @@ | |
"coverage": "codecov", | ||
"docs:dev": "docz dev", | ||
"docs:build": "docz build", | ||
"contributors:add": "all-contributors add" | ||
"contributors:add": "all-contributors add", | ||
"install-16": "npm install --save-dev react@\"^16.9.0\" react-dom@\"^16.9.0\" react-test-renderer@\"^16.9.0\"", | ||
"install-next": "npm install --save-dev react@next react-dom@next react-test-renderer@next" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.12.5", | ||
|
@@ -64,7 +65,7 @@ | |
"kcd-scripts": "11.2.0", | ||
"prettier": "^2.2.1", | ||
"react": "17.0.2", | ||
"react-dom": "^17.0.1", | ||
"react-dom": "17.0.2", | ||
"react-test-renderer": "17.0.2", | ||
"ts-node": "^10.0.0", | ||
"typescript": "4.3.5" | ||
|
Uh oh!
There was an error while loading. Please reload this page.