diff options
author | Hakim El Hattab | 2014-10-06 09:41:29 +0200 |
---|---|---|
committer | Hakim El Hattab | 2014-10-06 09:41:38 +0200 |
commit | cc02564b2ff81580e55c23fba859b02bc3bd2697 (patch) | |
tree | cf8c44c42536dbd9d0fccf421dbe46a949da1403 /Gruntfile.js | |
parent | 588472c5204a1a55db7b99627c4ac4477117ad37 (diff) | |
parent | 9bc5b81292619ef06e9a582a7607b7e0601d7c17 (diff) |
reveal.css is now scss, merge autoprexier #1007
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index a15e737..c6132e4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -29,17 +29,10 @@ module.exports = function(grunt) { } }, - cssmin: { - compress: { - files: { - 'css/reveal.min.css': [ 'css/reveal.css' ] - } - } - }, - sass: { dist: { files: { + 'css/reveal.css': 'css/reveal.scss', 'css/theme/default.css': 'css/theme/source/default.scss', 'css/theme/black.css': 'css/theme/source/black.scss', 'css/theme/beige.css': 'css/theme/source/beige.scss', @@ -54,6 +47,20 @@ module.exports = function(grunt) { } }, + autoprefixer: { + dist: { + src: 'css/reveal.css' + } + }, + + cssmin: { + compress: { + files: { + 'css/reveal.min.css': [ 'css/reveal.css' ] + } + } + }, + jshint: { options: { curly: false, @@ -113,6 +120,10 @@ module.exports = function(grunt) { files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ], tasks: 'themes' }, + css: { + files: [ 'css/reveal.css' ], + tasks: 'css' + }, html: { files: [ 'index.html'] } @@ -128,14 +139,18 @@ module.exports = function(grunt) { grunt.loadNpmTasks( 'grunt-contrib-watch' ); grunt.loadNpmTasks( 'grunt-sass' ); grunt.loadNpmTasks( 'grunt-contrib-connect' ); + grunt.loadNpmTasks( 'grunt-autoprefixer' ); grunt.loadNpmTasks( 'grunt-zip' ); // Default task - grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify', 'qunit' ] ); + grunt.registerTask( 'default', [ 'jshint', 'css', 'uglify', 'qunit' ] ); // Theme task grunt.registerTask( 'themes', [ 'sass' ] ); + // CSS task + grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] ); + // Package presentation to archive grunt.registerTask( 'package', [ 'default', 'zip' ] ); |