Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/**
test/resized/**
41 changes: 41 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
nodeunit: {
files: ['test/**/*.js']
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['default']
},
jshint: {
files: ['Gruntfile.js', 'tasks/**/*.js', 'test/**/*.js'],
options: {
globals: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
node: true,
es5: true,
strict: false
}
}
}
});

grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');

grunt.registerTask('test', ['nodeunit:files']);
grunt.registerTask('default', ['jshint','test']);

};
41 changes: 0 additions & 41 deletions grunt.js

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/grunt

This file was deleted.

2 changes: 0 additions & 2 deletions node_modules/grunt/.npmignore

This file was deleted.

22 changes: 0 additions & 22 deletions node_modules/grunt/LICENSE-MIT

This file was deleted.

83 changes: 0 additions & 83 deletions node_modules/grunt/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions node_modules/grunt/bin/grunt

This file was deleted.

152 changes: 0 additions & 152 deletions node_modules/grunt/dev/init.exp

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/grunt/docs/README.md

This file was deleted.

Loading