You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
751 B

  1. 'use strict';
  2. module.exports = function (grunt, options) {
  3. return {
  4. watchServe: {
  5. tasks: ['watch:fast', 'connect:webserver'],
  6. options: {
  7. logConcurrentOutput: true
  8. }
  9. },
  10. unit: {
  11. tasks: ['karma', 'watch:unit'],
  12. options: {
  13. logConcurrentOutput: true
  14. }
  15. },
  16. dev: {
  17. tasks: ['karma', 'watch:unit', 'watch:source'],
  18. options: {
  19. logConcurrentOutput: true
  20. }
  21. },
  22. website: {
  23. tasks: ['concat:website', 'watch:website', 'connect:webserver'],
  24. options: {
  25. logConcurrentOutput: true
  26. }
  27. }
  28. };
  29. };