mirror of https://github.com/embarklabs/embark.git
Merge pull request #427 from embark-framework/bug_fix/vyper
add line to compile .vy
This commit is contained in:
commit
0a9e4a0f37
|
@ -9,7 +9,9 @@ class Vyper {
|
|||
this.events = embark.events;
|
||||
this.contractDirectories = options.contractDirectories;
|
||||
|
||||
// FIXME: Use array of extensions instead of duplicatiing
|
||||
embark.registerCompiler(".py", this.compile_vyper.bind(this));
|
||||
embark.registerCompiler(".vy", this.compile_vyper.bind(this));
|
||||
}
|
||||
|
||||
static compileVyperContract(filename, compileABI, callback) {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue