Skip to content

Commit

Permalink
fix: pin styled-components to ^5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed Aug 11, 2023
1 parent 5331d27 commit 10922da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/npm/resolveLatestVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import pProps from 'p-props'
import getLatestVersion from 'get-latest-version'

// We may want to lock certain dependencies to specific versions
const lockedDependencies: Record<string, string> = {}
const lockedDependencies: Record<string, string> = {
'styled-components': '^5.2',
}

export function resolveLatestVersions(packages: string[]) {
const versions: Record<string, string> = {}
Expand Down

0 comments on commit 10922da

Please sign in to comment.