diff options
author | Yves Delley | 2014-09-12 22:37:57 +0200 |
---|---|---|
committer | Yves Delley | 2014-09-12 22:37:57 +0200 |
commit | 2bc36f2dfe04746d5a10c48531b38c64415d43aa (patch) | |
tree | 72444cb336b09ef7b88e6cbba7c77046e800b576 /Gruntfile.js | |
parent | 7fe762c2f3d53e1a7dc457f8269105208230f399 (diff) |
re-created unprefixed version of reveal.css automatically using autoprefixer, to facilitate merging of changes to it
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 3a54333..55585d4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -81,6 +81,14 @@ module.exports = function(grunt) { files: { 'css/reveal.css': 'css/reveal.bare.css' } + }, + unprefix: { + files: { + 'css/reveal.clean.css': 'css/reveal.css' + }, + options: { + browsers: [] + } } }, @@ -139,7 +147,7 @@ module.exports = function(grunt) { grunt.registerTask( 'themes', [ 'sass' ] ); // CSS task - grunt.registerTask( 'css', [ 'autoprefixer', 'cssmin' ] ); + grunt.registerTask( 'css', [ 'autoprefixer:dist', 'cssmin' ] ); // Package presentation to archive |