1
0
Przeglądaj źródła

Merge pull request #676 from mkroehnert/grunt-verbose

Grunt: '-v'/'--verbose' cmd line flag now makes compiler output verbose (fix #653)
Manfred Kröhnert 11 lat temu
rodzic
commit
931b270849
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      grunt/tasks/grunt-amberc.js

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

@@ -35,7 +35,7 @@ module.exports = function(grunt) {
     var options = this.options({
       amber_dir: undefined,
       closure_jar: '',
-      verbose: false
+      verbose: grunt.option('verbose') || false
     });
     this.data.verbose = options.verbose;