소스 검색

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));
       }
     });