-
Notifications
You must be signed in to change notification settings - Fork 232
Test against multiple versions of React #663
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
Merged
mpeyper
merged 4 commits into
testing-library:main
from
snowystinger:support-testing-multiple-versions
Aug 1, 2021
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
f49594b
Test against multiple versions of React
snowystinger a55122c
add to contributors
snowystinger 530c47e
Merge branch 'main' into support-testing-multiple-versions
snowystinger acf5dd6
chore(scripts): add extra install scripts for other react versions
mpeyper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -33,7 +33,6 @@ | |
"scripts": { | ||
"setup": "npm install && npm run validate -s", | ||
"validate": "kcd-scripts validate", | ||
"prepare": "npm run build", | ||
"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,10 @@ | |
"coverage": "codecov", | ||
"docs:dev": "docz dev", | ||
"docs:build": "docz build", | ||
"contributors:add": "all-contributors add" | ||
"contributors:add": "all-contributors add", | ||
"install:react-16-9": "npm install --no-save [email protected] [email protected] [email protected]", | ||
"install:react-16": "npm install --no-save react@^16 react-dom@^16 react-test-renderer@^16", | ||
"install:react-17": "npm install --no-save react@^17 react-dom@^17 react-test-renderer@^17" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.12.5", | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
just a reminder that removing this means install will happen differently, build will no longer run on npm install, so it'll need to be done before packaging and publishing to npm
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.
Yeah, I'm pretty sure this was just left over from before we used semantic-release. We now have an explicit built in the release pipeline.