You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version of solc hardhat uses is 0.7.3, released 4 years ago.
Why should we fix it though?
When I install hardhat, I get the following warns:
npm WARN deprecated [email protected]: Rimraf versions prior to v4 are no longer supported
npm WARN deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm WARN deprecated [email protected]: Glob versions prior to v9 are no longer supported
By upgrading solc from 0.7.3 to 0.8.26, we can eliminate outdated versions of glob and rimraf from the dependencies. solc 0.8.26 has 7 dependencies, while solc 0.7.3 has 9 dependencies (including the two aforementioned outdated ones)
Steps to Reproduce the Problem
create a new node project
install hardhat (npm i hardhat)
read following warnings
Specifications
Hardhat Version: 2.22.5
pnpm Version: 9.4.0
node version: 21.2.0
Platform: macOS 12.7.2
More Info
I have a huge pet peeve for npm warns! I'd be super happy to be assigned to this issue and work on upgrading the solc version. I'll link my fork in a second.
TL;DR:
solc is outdated; upgrading it will reduce warn messages on npm install and also hopefully reduce dependencies. quality of life pretty much.
The text was updated successfully, but these errors were encountered:
The Problem
The version of
solc
hardhat uses is 0.7.3, released 4 years ago.Why should we fix it though?
When I install
hardhat
, I get the following warns:Here's the output of
pnpm why rimraf
and
pnpm why glob
By upgrading solc from 0.7.3 to 0.8.26, we can eliminate outdated versions of glob and rimraf from the dependencies. solc 0.8.26 has 7 dependencies, while solc 0.7.3 has 9 dependencies (including the two aforementioned outdated ones)
Steps to Reproduce the Problem
npm i hardhat
)Specifications
More Info
I have a huge pet peeve for npm warns! I'd be super happy to be assigned to this issue and work on upgrading the solc version. I'll link my fork in a second.
TL;DR:
solc is outdated; upgrading it will reduce warn messages on npm install and also hopefully reduce dependencies. quality of life pretty much.
The text was updated successfully, but these errors were encountered: