1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/env node
// We need the above pragma since this script will be run as a command-line tool.
import { logUtils } from '@0x/utils';
import * as _ from 'lodash';
import 'source-map-support/register';
import * as yargs from 'yargs';
import { Compiler } from './compiler';
const DEFAULT_CONTRACTS_LIST = '*';
const SEPARATOR = ',';
(async () => {
const argv = yargs
.option('contracts-dir', {
type: 'string',
description: 'path of contracts directory to compile',
})
.option('artifacts-dir', {
type: 'string',
description: 'path to write contracts artifacts to',
})
.option('contracts', {
type: 'string',
description: 'comma separated list of contracts to compile',
})
.option('watch', {
alias: 'w',
default: false,
})
.help().argv;
const contracts = _.isUndefined(argv.contracts)
? undefined
: argv.contracts === DEFAULT_CONTRACTS_LIST
? DEFAULT_CONTRACTS_LIST
: argv.contracts.split(SEPARATOR);
const opts = {
contractsDir: argv.contractsDir,
artifactsDir: argv.artifactsDir,
contracts,
};
const compiler = new Compiler(opts);
if (argv.watch) {
await compiler.watchAsync();
} else {
await compiler.compileAsync();
}
})().catch(err => {
logUtils.log(err);
process.exit(1);
});
|