@@ -336,17 +336,17 @@ file(diagnosticInfoMapTs, [processDiagnosticMessagesJs, diagnosticMessagesJson],
336
336
complete ( ) ;
337
337
} ) ;
338
338
ex . run ( ) ;
339
- } , { async : true } )
339
+ } , { async : true } ) ;
340
340
341
341
desc ( "Generates a diagnostic file in TypeScript based on an input JSON file" ) ;
342
- task ( "generate-diagnostics" , [ diagnosticInfoMapTs ] )
342
+ task ( "generate-diagnostics" , [ diagnosticInfoMapTs ] ) ;
343
343
344
344
345
345
// Publish nightly
346
346
var configureNightlyJs = path . join ( scriptsDirectory , "configureNightly.js" ) ;
347
347
var configureNightlyTs = path . join ( scriptsDirectory , "configureNightly.ts" ) ;
348
348
var packageJson = "package.json" ;
349
- var programTs = path . join ( compilerDirectory , "program.ts" )
349
+ var programTs = path . join ( compilerDirectory , "program.ts" ) ;
350
350
351
351
file ( configureNightlyTs ) ;
352
352
@@ -476,11 +476,11 @@ file(specMd, [word2mdJs, specWord], function () {
476
476
child_process . exec ( cmd , function ( ) {
477
477
complete ( ) ;
478
478
} ) ;
479
- } , { async : true } )
479
+ } , { async : true } ) ;
480
480
481
481
482
482
desc ( "Generates a Markdown version of the Language Specification" ) ;
483
- task ( "generate-spec" , [ specMd ] )
483
+ task ( "generate-spec" , [ specMd ] ) ;
484
484
485
485
486
486
// 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() {
612
612
exec ( cmd , deleteTemporaryProjectOutput ) ;
613
613
} , { async : true } ) ;
614
614
615
- desc ( "Generates code coverage data via instanbul" )
615
+ desc ( "Generates code coverage data via instanbul" ) ;
616
616
task ( "generate-code-coverage" , [ "tests" , builtLocalDirectory ] , function ( ) {
617
617
var cmd = 'istanbul cover node_modules/mocha/bin/_mocha -- -R min -t ' + testTimeout + ' ' + run ;
618
618
console . log ( cmd ) ;
@@ -655,7 +655,7 @@ task("runtests-browser", ["tests", "browserify", builtLocalDirectory], function(
655
655
function getDiffTool ( ) {
656
656
var program = process . env [ 'DIFF' ]
657
657
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." ) ;
659
659
}
660
660
return program ;
661
661
}
@@ -664,14 +664,14 @@ function getDiffTool() {
664
664
desc ( "Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment variable" ) ;
665
665
task ( 'diff' , function ( ) {
666
666
var cmd = '"' + getDiffTool ( ) + '" ' + refBaseline + ' ' + localBaseline ;
667
- console . log ( cmd )
667
+ console . log ( cmd ) ;
668
668
exec ( cmd ) ;
669
669
} , { async : true } ) ;
670
670
671
671
desc ( "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable" ) ;
672
672
task ( 'diff-rwc' , function ( ) {
673
673
var cmd = '"' + getDiffTool ( ) + '" ' + refRwcBaseline + ' ' + localRwcBaseline ;
674
- console . log ( cmd )
674
+ console . log ( cmd ) ;
675
675
exec ( cmd ) ;
676
676
} , { async : true } ) ;
677
677
0 commit comments