@youbox/external-compile
v1.0.0-alpha.33
Published
Wrapper to compile YOUBox contracts with arbitrary shell command
Downloads
9
Maintainers
Readme
@youbox/external-compile
Package to enable Truffle to run arbitrary commands as part of compilation.
Configuration
In your Truffle config (truffle-config.js
):
module.exports = {
compilers: {
external: {
command: "<compilation-command>",
targets: [{
path: "<relative/globbed/path/to/outputs/*.output>",
command: "<artifact-generation-command>"
}]
}
}
}