@@ -336,17 +336,17 @@ file(diagnosticInfoMapTs, [processDiagnosticMessagesJs, diagnosticMessagesJson],
336336 complete ( ) ;
337337 } ) ;
338338 ex . run ( ) ;
339- } , { async : true } )
339+ } , { async : true } ) ;
340340
341341desc ( "Generates a diagnostic file in TypeScript based on an input JSON file" ) ;
342- task ( "generate-diagnostics" , [ diagnosticInfoMapTs ] )
342+ task ( "generate-diagnostics" , [ diagnosticInfoMapTs ] ) ;
343343
344344
345345// Publish nightly
346346var configureNightlyJs = path . join ( scriptsDirectory , "configureNightly.js" ) ;
347347var configureNightlyTs = path . join ( scriptsDirectory , "configureNightly.ts" ) ;
348348var packageJson = "package.json" ;
349- var programTs = path . join ( compilerDirectory , "program.ts" )
349+ var programTs = path . join ( compilerDirectory , "program.ts" ) ;
350350
351351file ( configureNightlyTs ) ;
352352
@@ -476,11 +476,11 @@ file(specMd, [word2mdJs, specWord], function () {
476476 child_process . exec ( cmd , function ( ) {
477477 complete ( ) ;
478478 } ) ;
479- } , { async : true } )
479+ } , { async : true } ) ;
480480
481481
482482desc ( "Generates a Markdown version of the Language Specification" ) ;
483- task ( "generate-spec" , [ specMd ] )
483+ task ( "generate-spec" , [ specMd ] ) ;
484484
485485
486486// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
@@ -612,7 +612,7 @@ task("runtests", ["tests", builtLocalDirectory], function() {
612612 exec ( cmd , deleteTemporaryProjectOutput ) ;
613613} , { async : true } ) ;
614614
615- desc ( "Generates code coverage data via instanbul" )
615+ desc ( "Generates code coverage data via instanbul" ) ;
616616task ( "generate-code-coverage" , [ "tests" , builtLocalDirectory ] , function ( ) {
617617 var cmd = 'istanbul cover node_modules/mocha/bin/_mocha -- -R min -t ' + testTimeout + ' ' + run ;
618618 console . log ( cmd ) ;
@@ -655,7 +655,7 @@ task("runtests-browser", ["tests", "browserify", builtLocalDirectory], function(
655655function getDiffTool ( ) {
656656 var program = process . env [ 'DIFF' ]
657657 if ( ! program ) {
658- fail ( "Add the 'DIFF' environment variable to the path of the program you want to use." )
658+ fail ( "Add the 'DIFF' environment variable to the path of the program you want to use." ) ;
659659 }
660660 return program ;
661661}
@@ -664,14 +664,14 @@ function getDiffTool() {
664664desc ( "Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment variable" ) ;
665665task ( 'diff' , function ( ) {
666666 var cmd = '"' + getDiffTool ( ) + '" ' + refBaseline + ' ' + localBaseline ;
667- console . log ( cmd )
667+ console . log ( cmd ) ;
668668 exec ( cmd ) ;
669669} , { async : true } ) ;
670670
671671desc ( "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable" ) ;
672672task ( 'diff-rwc' , function ( ) {
673673 var cmd = '"' + getDiffTool ( ) + '" ' + refRwcBaseline + ' ' + localRwcBaseline ;
674- console . log ( cmd )
674+ console . log ( cmd ) ;
675675 exec ( cmd ) ;
676676} , { async : true } ) ;
677677
0 commit comments