1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/karma-coverage/gruntfile.js
2025-08-25 17:48:13 +08:00

21 lines
472 B
JavaScript

module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-npm')
grunt.loadNpmTasks('grunt-karma')
grunt.initConfig({
pkgFile: 'package.json',
'npm-contributors': {
options: {
commitMessage: 'chore: update contributors'
}
},
karma: {
coffee: {
configFile: 'examples/coffee/karma.conf.coffee'
},
coffeeRequireJS: {
configFile: 'examples/coffee-requirejs/karma.conf.coffee'
}
}
})
}