1.1.0-dune.4 • Published 4 years ago

@dune-network-truffle/external-compile v1.1.0-dune.4

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@dune-network-truffle/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>"
      }]
    }
  }
}