Skip to content

Commit

Permalink
Do not put the URL in the path
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 authored Jul 15, 2024
1 parent ecf843a commit a727fd3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libs/remix-url-resolver/src/resolve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ export class RemixURLResolver {

async handleNpmImport(url: string): Promise<HandlerResponse> {
if (!url) throw new Error('url is empty')
let fetchUrl = url
const isVersionned = semverRegex().exec(url.replace(/@/g, '@ ').replace(/\//g, ' /'))
if (this.getDependencies && !isVersionned) {
try {
Expand Down Expand Up @@ -174,7 +175,7 @@ export class RemixURLResolver {
}
if (version) {
const versionSemver = semver.minVersion(version)
url = url.replace(pkg, `${pkg}@${versionSemver.version}`)
fetchUrl = url.replace(pkg, `${pkg}@${versionSemver.version}`)
}
}
}
Expand All @@ -189,7 +190,7 @@ export class RemixURLResolver {
// get response from all urls
for (let i = 0; i < npm_urls.length; i++) {
try {
const req = npm_urls[i] + url
const req = npm_urls[i] + fetchUrl
const response: AxiosResponse = await axios.get(req, { transformResponse: []})
content = response.data
break
Expand Down

0 comments on commit a727fd3

Please sign in to comment.