grunt-contrib-jshint globals exports=true参数设置的作用
发布于 18小时前 作者 SPxiaomin 43 次浏览 来自 问答
Gruntfile.js文件
grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    jshint: {
        files: ['gruntfile.js', 'src/*.js', 'build/*.js'],
        options: {
            globals: {
                exports: true
            }
        }
    }
  });
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['uglify','concat','qunit','jshint']);

新手,刚入手grunt,google许久,仍未找到解决心中疑惑,如上代码中的exports: true设置有什么作用?谢谢

回到顶部