Remove badly named folder

This commit is contained in:
Kyle Robinson Young 2013-07-19 09:52:40 -07:00
parent c64696cbe8
commit bb37221123
2 changed files with 0 additions and 25 deletions

View File

@ -1,24 +0,0 @@
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
echo: {
one: { message: 'one has changed' }
},
watch: {
options:{
dateFormat: function(time) {
grunt.log.writeln('dateFormat has worked! Done in ' + time + 'ms. Waiting...');
}
},
one: {
files: ['lib/one.js', 'Gruntfile.js'],
tasks: 'echo:one',
}
}
});
// Load the echo task
grunt.loadTasks('../tasks');
// Load this watch task
grunt.loadTasks('../../../tasks');
grunt.registerTask('default', ['echo']);
};

View File

@ -1 +0,0 @@
var one = true;