Browse Source

merge grunt update to 0.4 (#350)

embed
Hakim El Hattab 12 years ago
parent
commit
3f740c8553
  1. 2
      css/reveal.min.css
  2. 17
      gruntfile.js
  3. 4
      js/reveal.min.js

2
css/reveal.min.css

File diff suppressed because one or more lines are too long

17
gruntfile.js

@ -5,7 +5,7 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner:
banner:
'/*!\n' +
' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
' * http://lab.hakim.se/reveal-js\n' +
@ -25,13 +25,13 @@ module.exports = function(grunt) {
},
uglify: {
options: {
banner: '<%= meta.banner %> \n'
},
build: {
src: 'js/reveal.js',
dest: 'js/reveal.min.js'
}
options: {
banner: '<%= meta.banner %>\n'
},
build: {
src: 'js/reveal.js',
dest: 'js/reveal.min.js'
}
},
cssmin: {
@ -80,4 +80,3 @@ module.exports = function(grunt) {
grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] );
};

4
js/reveal.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save