Skip to content

Commit

Permalink
[Add dependency] (#5887)
Browse files Browse the repository at this point in the history
Run into similar issue like this:
vercel/react-tweet#80
solved by adding
```
"resolutions": {
  "@babel/runtime": "^7.24.6"
},
```
Explained in this
[issue](vercel/next.js#35110 (comment))
  • Loading branch information
yangw-dev authored Nov 9, 2024
1 parent ce0896e commit c5ca645
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions torchci/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"format": "yarn prettier --write .",
"uploadQueryLambda": "npx node scripts/uploadQueryLambda.mjs"
},
"resolutions": {
"@babel/runtime": "^7.24.6"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.347.1",
"@aws-sdk/client-s3": "^3.347.1",
Expand Down
17 changes: 11 additions & 6 deletions torchci/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1321,12 +1321,12 @@
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"

"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.13", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.22.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7":
version "7.22.6"
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz"
integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.13", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.22.6", "@babel/runtime@^7.24.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1"
integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
dependencies:
regenerator-runtime "^0.13.11"
regenerator-runtime "^0.14.0"

"@babel/template@^7.25.9", "@babel/template@^7.3.3":
version "7.25.9"
Expand Down Expand Up @@ -7545,11 +7545,16 @@ reduce-css-calc@^2.1.8:
css-unit-converter "^1.1.1"
postcss-value-parser "^3.3.0"

regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.4:
regenerator-runtime@^0.13.4:
version "0.13.11"
resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==

regenerator-runtime@^0.14.0:
version "0.14.1"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f"
integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==

regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3:
version "1.4.3"
resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
Expand Down

0 comments on commit c5ca645

Please sign in to comment.