From 37a8f1037eee17be88e1af0fa42b1834ab26b797 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 14 May 2015 10:36:17 -0700 Subject: [PATCH] build(broccoli-typescript): add missing semicolon --- tools/broccoli/broccoli-typescript.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/broccoli/broccoli-typescript.ts b/tools/broccoli/broccoli-typescript.ts index aabd46af4e..e63df7a2d4 100644 --- a/tools/broccoli/broccoli-typescript.ts +++ b/tools/broccoli/broccoli-typescript.ts @@ -40,7 +40,7 @@ class DiffingTSCompiler implements DiffingBroccoliPlugin { this.rootFilePaths = options.rootFilePaths ? options.rootFilePaths.splice(0) : []; this.tsServiceHost = new CustomLanguageServiceHost(this.tsOpts, this.rootFilePaths, this.fileRegistry, this.inputPath); - this.tsService = ts.createLanguageService(this.tsServiceHost, ts.createDocumentRegistry()) + this.tsService = ts.createLanguageService(this.tsServiceHost, ts.createDocumentRegistry()); }