We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many contracts use interfaces and libraries from broxus and itgold that are provided as npm packages and are stored in the node_modules folder.
A typical import looks like this:
import '@itgold/everscale-tip/contracts/TIP4_1/TIP4_1Nft.sol';
solc has the flag that allows you to compile the contract to add additional directories for import resolution.
solc
Example:
solc Nft.sol --include-path node_modules
It would be very useful to have this flag in everdev too
everdev
everdev sol compile Nft.sol --include-path node_modules
Please, add this flag to everdev.
The text was updated successfully, but these errors were encountered:
@pizza-777 Thank you for this feature request, will support it in the next releases:)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Many contracts use interfaces and libraries from broxus and itgold that are provided as npm packages and are stored in the node_modules folder.
A typical import looks like this:
solc
has the flag that allows you to compile the contract to add additional directories for import resolution.Example:
It would be very useful to have this flag in
everdev
tooExample:
Please, add this flag to
everdev
.The text was updated successfully, but these errors were encountered: