I am trying out Remix as an IDE. However, I'm using the excellent open-zeppelin library for development. Is there any way to include all the files from open-zeppelin in the build path for Remix without pasting them all in there?
I have tried importing a local directory, but since my normal build tool is Truffle, the Remix compiler doesn't pick up the node_modules directory. I tried copying the open-zeppelin directory into the contracts directory, but still my imports won't work. They work if I prefix my paths "./", but I'd rather not do that, since I would have to do it in every single open-zeppelin file.
import "zeppelin-solidity/contracts/crowdsale/CappedCrowdsale.sol";. I'd like the import statements to stay that way. – karianneberg Nov 28 '17 at 09:20