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.

21 lines
399 B

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