-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
chore: fix version
script
#4925
Conversation
|
let isRelaxedPeerDep = | ||
config.peerDependencies[`@remix-run/${pkg}`]?.startsWith("^"); | ||
config.peerDependencies[`@remix-run/${pkg}`] = `${ | ||
isRelaxedPeerDep ? "^" : "" | ||
}${nextVersion}`; |
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.
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.
i'll defer to @chaance on this :)
return remixPackagesFull.includes(packageName) && | ||
importName !== "@remix-run/deno" |
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.
@remix-run/deno
code is already a Deno module, so just get types for it directly from node_modules/
remix/templates/deno/.vscode/resolve_npm_imports.json
Lines 10 to 11 in d5ca496
"// `@remix-run/deno` code is already a Deno module, so just get types for it directly from `node_modules/`": "", | |
"@remix-run/deno": "../node_modules/@remix-run/deno/index.ts", |
9d85911
to
bbf55c7
Compare
db318c2
to
c952001
Compare
c952001
to
f175449
Compare
Follow-up of #4849