Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f3d2888

Browse filesBrowse files
committed
merge with master
2 parents dd6d77a + ea880e9 commit f3d2888
Copy full SHA for f3d2888

105 files changed

+2,950-1,361Lines changed: 2950 additions & 1361 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎Jakefile.js‎

Copy file name to clipboardExpand all lines: Jakefile.js
+9-9Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ var compilerFilename = "tsc.js";
218218
function compileFile(outFile, sources, prereqs, prefixes, useBuiltCompiler, noOutFile, generateDeclarations, outDir, preserveConstEnums, keepComments, noResolve, stripInternal, callback) {
219219
file(outFile, prereqs, function() {
220220
var dir = useBuiltCompiler ? builtLocalDirectory : LKGDirectory;
221-
var options = "--module commonjs -noImplicitAny";
221+
var options = "--module commonjs --noImplicitAny --noEmitOnError";
222222

223223
// Keep comments when specifically requested
224224
// or when in debug mode.
@@ -339,10 +339,10 @@ file(diagnosticInfoMapTs, [processDiagnosticMessagesJs, diagnosticMessagesJson],
339339
complete();
340340
});
341341
ex.run();
342-
}, {async: true});
342+
}, {async: true});
343343

344344
desc("Generates a diagnostic file in TypeScript based on an input JSON file");
345-
task("generate-diagnostics", [diagnosticInfoMapTs]);
345+
task("generate-diagnostics", [diagnosticInfoMapTs]);
346346

347347

348348
// Publish nightly
@@ -479,11 +479,11 @@ file(specMd, [word2mdJs, specWord], function () {
479479
child_process.exec(cmd, function () {
480480
complete();
481481
});
482-
}, {async: true});
482+
}, {async: true});
483483

484484

485485
desc("Generates a Markdown version of the Language Specification");
486-
task("generate-spec", [specMd]);
486+
task("generate-spec", [specMd]);
487487

488488

489489
// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
@@ -615,7 +615,7 @@ task("runtests", ["tests", builtLocalDirectory], function() {
615615
exec(cmd, deleteTemporaryProjectOutput);
616616
}, {async: true});
617617

618-
desc("Generates code coverage data via instanbul");
618+
desc("Generates code coverage data via instanbul");
619619
task("generate-code-coverage", ["tests", builtLocalDirectory], function () {
620620
var cmd = 'istanbul cover node_modules/mocha/bin/_mocha -- -R min -t ' + testTimeout + ' ' + run;
621621
console.log(cmd);
@@ -658,7 +658,7 @@ task("runtests-browser", ["tests", "browserify", builtLocalDirectory], function(
658658
function getDiffTool() {
659659
var program = process.env['DIFF']
660660
if (!program) {
661-
fail("Add the 'DIFF' environment variable to the path of the program you want to use.");
661+
fail("Add the 'DIFF' environment variable to the path of the program you want to use.");
662662
}
663663
return program;
664664
}
@@ -667,14 +667,14 @@ function getDiffTool() {
667667
desc("Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment variable");
668668
task('diff', function () {
669669
var cmd = '"' + getDiffTool() + '" ' + refBaseline + ' ' + localBaseline;
670-
console.log(cmd);
670+
console.log(cmd);
671671
exec(cmd);
672672
}, {async: true});
673673

674674
desc("Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable");
675675
task('diff-rwc', function () {
676676
var cmd = '"' + getDiffTool() + '" ' + refRwcBaseline + ' ' + localRwcBaseline;
677-
console.log(cmd);
677+
console.log(cmd);
678678
exec(cmd);
679679
}, {async: true});
680680

Collapse file
59.5 KB
Binary file not shown.
Collapse file
253 KB
Binary file not shown.
Collapse file
16.7 KB
Binary file not shown.
Collapse file
196 KB
Binary file not shown.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.