Browse Source

grunt-amberc: process verbose option

Manfred Kroehnert 11 năm trước cách đây
mục cha
commit
4d66ad39db
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      grunt/tasks/grunt-amberc.js

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

@@ -122,6 +122,9 @@ module.exports = function(grunt) {
     if (undefined !== outputName) {
       configuration.program = outputName;
     }
+    if (true === data.verbose) {
+    	configuration.verbose = true;
+    }
     return configuration;
   }