-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure compat with [email protected]
Closes #887
- Loading branch information
Showing
3 changed files
with
177 additions
and
117 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -28,8 +28,9 @@ const NEXT_VERSIONS_UNDER_TEST = satisfiesRange(process.versions.node, '<15') ? | |
['next@^10', 'react@^17'], | ||
['[email protected]', 'react@^17'], | ||
['next@^11', 'react@^17'], | ||
['[email protected]', 'react@^17'], | ||
['next@latest', 'react@^17'] | ||
['[email protected]', 'react@^18'], | ||
['[email protected]', 'react@^18'], | ||
['next@latest', 'react@^18'] | ||
] | ||
: | ||
[ | ||
|
@@ -41,6 +42,7 @@ const NEXT_VERSIONS_UNDER_TEST = satisfiesRange(process.versions.node, '<15') ? | |
['[email protected]'], // ? See issue #295 | ||
['next@^11'], // ? Latest version 11 release | ||
['next@^12.0.x'], // ? See issue #487 | ||
['next@^13.5.3'], // ? See issue #887 | ||
['next@latest'] // ? Latest release | ||
]; | ||
|
||
|
Oops, something went wrong.
ca1da40
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.
Er, that should have said 13.5.4 instead of 12.1.0. Oops :)