1.0.12 • Published 5 years ago

@dexon-foundation/truffle-external-compile v1.0.12

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

truffle-external-compile

Package to enable Truffle to run arbitrary commands as part of compilation.

Configuration

In your Truffle config (truffle.js):

module.exports = {
  compilers: {
    external: {
      command: "<compilation-command>",
      targets: [{
        path: "<relative/globbed/path/to/outputs/*.output>",
        command: "<artifact-generation-command>"
      }]
    }
  }
}