grunt-manifast
Advanced tools
Comparing version 0.0.0 to 0.0.1
@@ -18,13 +18,13 @@ /* | ||
'tasks/*.js', | ||
'<%= nodeunit.tests %>', | ||
'<%= nodeunit.tests %>' | ||
], | ||
options: { | ||
jshintrc: '.jshintrc', | ||
}, | ||
jshintrc: '.jshintrc' | ||
} | ||
}, | ||
clean: { | ||
tests: ['tmp'], | ||
tests: ['tmp'] | ||
}, | ||
nodeunit: { | ||
tests: ['test/*_test.js'], | ||
tests: ['test/*_test.js'] | ||
}, | ||
@@ -79,3 +79,3 @@ manifast: { | ||
src: ['test/**'], | ||
dest: 'tmp/manifest-custom.csv' | ||
dest: 'tmp/example.appcache' | ||
} | ||
@@ -82,0 +82,0 @@ ] |
{ | ||
"name": "grunt-manifast", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"description": "A grunt plugin to assist in generating file manifests.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -15,3 +15,3 @@ /* | ||
var template = ''; | ||
var templatePath = '.grunt/template.csv'; | ||
var templatePath = '.grunt/template.appcache'; | ||
if (!grunt.file.exists(templatePath)) { | ||
@@ -18,0 +18,0 @@ grunt.log.error('Template file "' + templatePath + '" not found.'); |
@@ -47,3 +47,3 @@ 'use strict'; | ||
test.done(); | ||
}, | ||
} | ||
}; |
56871
16