Files
protocol/packages/website/md/docs/sol-compiler/usage.md
2018-05-10 17:47:38 +02:00

721 B

CLI Usage

$ sol-compiler
Options:
  --version        Show version number                                 [boolean]
  --contracts-dir  path of contracts directory to compile               [string]
  --artifacts-dir  path to write contracts artifacts to                 [string]
  --contracts      comma separated list of contracts to compile
                                                         [string] [default: "*"]
  --help           Show help                                           [boolean]

API Usage

import { Compiler } from '@0xproject/sol-compiler';

const compiler = new Compiler();

(async () => {
    await compiler.compileAllAsync();
})().catch(console.log);