diff --git a/.gitignore b/.gitignore index e962dde16..e0a8e771f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ node_modules/ tmp-crx/ tmp-userscript/ testbuilds/ +test.html Gruntfile.js diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 47815b480..b496b0cf2 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -112,6 +112,9 @@ module.exports = (grunt) -> filter: (src) -> pkg = grunt.config 'pkg' grunt.file.isFile(src) and !grunt.file.isMatch(src, "testbuilds/#{pkg.name}#{pkg.meta.suffix.dev}.user.js") + web: + src: 'test.html' + dest: 'index.html' coffee: script: @@ -221,7 +224,7 @@ module.exports = (grunt) -> markdown: web: src: 'README.md' - dest: 'index.html' + dest: 'test.html' options: template: 'template.jst' @@ -362,6 +365,7 @@ module.exports = (grunt) -> grunt.registerTask 'web', [ 'markdown:web' + 'copy:web' 'shell:web' ]