Преглед изворни кода

amberc-grunt: print on console where files get moved to

Manfred Kroehnert пре 11 година
родитељ
комит
c8e9e2398e
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      grunt/tasks/amberc-grunt.js

+ 1 - 0
grunt/tasks/amberc-grunt.js

@@ -137,6 +137,7 @@ module.exports = function(grunt) {
 
     compiledFiles.forEach(function(file) {
       if (path.existsSync(file)) {
+        console.log('Move: ' + file + ' -> ' + path.join(target_dir, file));
         fs.renameSync(file, path.join(target_dir, file));
       }
     });