-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: no longer includes tag in sanity devDependency range
- Loading branch information
Showing
3 changed files
with
24 additions
and
13 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 |
---|---|---|
@@ -1,8 +1,16 @@ | ||
const sanityVersion = '3.0.0-rc.0' | ||
|
||
export const forcedPackageVersions = { | ||
react: '^18', | ||
'@types/react': '^18', | ||
'react-dom': '^18', | ||
'@types/react-dom': '^18', | ||
sanity: 'dev-preview || 3.0.0-rc.0', | ||
sanity: `dev-preview || ${sanityVersion}`, | ||
'@sanity/ui': '1.0.0-beta.32', | ||
} as const | ||
} | ||
|
||
export const forcedDevPackageVersions = { | ||
...forcedPackageVersions, | ||
// tagged release does not play nice with npm ci | ||
sanity: sanityVersion, | ||
} |
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