Notes for future me

This commit is contained in:
Roel van Uden 2015-03-07 13:29:36 +01:00
parent 2bb5feb647
commit 1288d0b3f8

4
ts.js
View File

@ -4,6 +4,10 @@ var fs = require('fs');
var path = require('path'); var path = require('path');
var isTest = process.argv[2] === '--only-test'; var isTest = process.argv[2] === '--only-test';
// TODO: This file can use some cleaning up. We want to use the tsconfig.json
// and go from there, but then without source maps. That should give us a final
// build output. For now, this legacy build file will remain to do its job.
read(function(err, fileNames) { read(function(err, fileNames) {
clean(fileNames, function() { clean(fileNames, function() {
var hasLintError = false; var hasLintError = false;