jquery – 如何使用日志语句调试Gruntfile.js?

前端之家收集整理的这篇文章主要介绍了jquery – 如何使用日志语句调试Gruntfile.js?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的Gruntfile中,如何在其处理中添加日志语句,如下例所示?
karma: {
        unit: {
            configFile: "<%= grunt.option('Debug') ? 'build/karma.conf.js' : '' %>",console.log(configFile),singleRun: true,browsers: ['PhantomJS']
        },}

解决方法

Gruntfiles是javascript所以你可以使用console.log(),只要它是有效的javascript.
grunt.initConfig({
  karma: {
    unit: {
      configFile: 'build/karma.conf.js'
    }
  }
});
if (grunt.option('debug')) {
  console.log(grunt.config('karma.unit.configFile'));
}
原文链接:/jquery/177526.html

猜你在找的jQuery相关文章