Skip to content

Commit 641e659

Browse files
committed
initial revision of SmartIndenter (TODO: indentation in list items)
1 parent 24c40bb commit 641e659

File tree

3 files changed

+390
-9
lines changed

3 files changed

+390
-9
lines changed

Jakefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ var servicesSources = [
5454
}).concat([
5555
"services.ts",
5656
"shims.ts",
57+
"formatting\\smartIndenter.ts"
5758
].map(function (f) {
5859
return path.join(servicesDirectory, f);
5960
}));
@@ -318,7 +319,7 @@ function exec(cmd, completeHandler) {
318319
complete();
319320
})
320321
try{
321-
ex.run();
322+
ex.run();
322323
} catch(e) {
323324
console.log('Exception: ' + e)
324325
}
@@ -385,7 +386,7 @@ desc("Generates code coverage data via instanbul")
385386
task("generate-code-coverage", ["tests", builtLocalDirectory], function () {
386387
var cmd = 'istanbul cover node_modules/mocha/bin/_mocha -- -R min -t ' + testTimeout + ' ' + run;
387388
console.log(cmd);
388-
exec(cmd);
389+
exec(cmd);
389390
}, { async: true });
390391

391392
// Browser tests

0 commit comments

Comments
 (0)