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.

17 lines
364 B

  1. module.exports = function(grunt) {
  2. 'use strict';
  3. grunt.initConfig({
  4. echo: {
  5. files: ['lib/*.js']
  6. },
  7. watch: {
  8. files: ['<%= echo.files %>'],
  9. tasks: ['echo']
  10. }
  11. });
  12. // Load the echo task
  13. grunt.loadTasks('../tasks');
  14. // Load this watch task
  15. grunt.loadTasks('../../../tasks');
  16. grunt.registerTask('default', ['echo']);
  17. };