Roel van Uden 9 gadi atpakaļ
vecāks
revīzija
d2e8a4c02e
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      ts.js

+ 2 - 2
ts.js

@@ -48,7 +48,7 @@ function clean(filePaths, done) {
  * @param {function(Error)} done
  */
 function compile(filePaths, done) {
-    if (isTest) return done(null);
+  if (isTest) return done(null);
   var execPath = path.join(__dirname, 'node_modules/.bin/tsc');
   var options = '--declaration --module CommonJS --noImplicitAny --outDir dist';
   childProcess.exec([execPath, options].concat(filePaths).join(' '), function(err, stdout) {
@@ -89,4 +89,4 @@ function read(done) {
   var filePaths = [];
   while ((matches = expression.exec(contents))) filePaths.push(matches[1]);
   done(null, filePaths);
-}
+}