From a6e1fcd62c56c24bb499ff376b9b8c877d269f01 Mon Sep 17 00:00:00 2001 From: Alexey Shamrin Date: Fri, 21 Apr 2017 03:54:38 +0300 Subject: [PATCH 1/2] should be merged when/if witheve/Eve#826 is released to NPM --- programs/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/compiler.ts b/programs/compiler.ts index ddd611c..80cd347 100644 --- a/programs/compiler.ts +++ b/programs/compiler.ts @@ -1,5 +1,5 @@ import {Program} from "witheve"; -import {CompilerWatcher} from "witheve/build/src/watchers/compiler"; +import CompilerWatcher from "witheve/build/src/watchers/compiler"; let prog = new Program("compiler test"); let compiler:CompilerWatcher = prog.attach("compiler") as any; From cf9e6220466315e11df76b81336003286a8f8a66 Mon Sep 17 00:00:00 2001 From: Alexey Shamrin Date: Fri, 21 Apr 2017 04:17:45 +0300 Subject: [PATCH 2/2] update --- programs/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/compiler.ts b/programs/compiler.ts index 80cd347..b3bf4bb 100644 --- a/programs/compiler.ts +++ b/programs/compiler.ts @@ -1,5 +1,5 @@ import {Program} from "witheve"; -import CompilerWatcher from "witheve/build/src/watchers/compiler"; +import {CompilerWatcher} from "witheve"; let prog = new Program("compiler test"); let compiler:CompilerWatcher = prog.attach("compiler") as any;