Skip to content

Commit

Permalink
Update axios version and bump url-resolver version
Browse files Browse the repository at this point in the history
  • Loading branch information
ioedeveloper committed Dec 29, 2022
1 parent 588799f commit 78c8ef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions libs/remix-url-resolver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-project/remix-url-resolver",
"version": "0.0.42",
"version": "0.0.43",
"description": "Solidity import url resolver engine",
"main": "src/index.js",
"types": "src/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"license": "MIT",
"dependencies": {
"@erebos/bzz-node": "^0.13.0",
"axios": "1.2.0",
"axios": "1.2.2",
"url": "^0.11.0",
"valid-url": "^1.0.9"
},
Expand Down
1 change: 0 additions & 1 deletion libs/remix-url-resolver/src/resolve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ export class RemixURLResolver {
// eslint-disable-next-line no-useless-catch
try {
const req = 'https://unpkg.com/' + url
console.log('AXIOS VERSION', axios.VERSION)
const response: AxiosResponse = await axios.get(req, { transformResponse: [] })
return { content: response.data, cleanUrl: url }
} catch (e) {
Expand Down

0 comments on commit 78c8ef3

Please sign in to comment.