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
When running yarn install in a project that has the latest version [email protected] as a dependency, I'm getting this in the install output:
warning workspace-aggregator-076b0d0e-a31b-4d15-a5bf-261416e7d734 > embark > web3-core > @types/[email protected]:
This is a stub types definition for bignumber.js (https://github.com/MikeMcl/bignumber.js/).
bignumber.js provides its own type definitions, so you don't need @types/bignumber.js installed!
[line breaks added by me]
Also, could @types/... dependencies generally be made devDependencies?
NOTE: Did a little reading re @types/... packages and it seems that when authoring a library, it is better to have them in "dependencies" and not"devDependencies" since that will benefit downstream devs authoring in TypeScript.
The text was updated successfully, but these errors were encountered:
When running
yarn install
in a project that has the latest version[email protected]
as a dependency, I'm getting this in the install output:[line breaks added by me]
Also, could@types/...
dependencies generally be made devDependencies?NOTE: Did a little reading re
@types/...
packages and it seems that when authoring a library, it is better to have them in"dependencies"
and not"devDependencies"
since that will benefit downstream devs authoring in TypeScript.The text was updated successfully, but these errors were encountered: