gruntfile.js 472 B

1234567891011121314151617181920
  1. module.exports = function (grunt) {
  2. grunt.loadNpmTasks('grunt-npm')
  3. grunt.loadNpmTasks('grunt-karma')
  4. grunt.initConfig({
  5. pkgFile: 'package.json',
  6. 'npm-contributors': {
  7. options: {
  8. commitMessage: 'chore: update contributors'
  9. }
  10. },
  11. karma: {
  12. coffee: {
  13. configFile: 'examples/coffee/karma.conf.coffee'
  14. },
  15. coffeeRequireJS: {
  16. configFile: 'examples/coffee-requirejs/karma.conf.coffee'
  17. }
  18. }
  19. })
  20. }