Gruntfile.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* global module:false */
  2. module.exports = function(grunt) {
  3. // Project configuration
  4. grunt.initConfig({
  5. pkg: grunt.file.readJSON('package.json'),
  6. meta: {
  7. banner:
  8. '/*!\n' +
  9. ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
  10. ' * http://lab.hakim.se/reveal-js\n' +
  11. ' * MIT licensed\n' +
  12. ' *\n' +
  13. ' * Copyright (C) 2013 Hakim El Hattab, http://hakim.se\n' +
  14. ' */'
  15. },
  16. // Tests will be added soon
  17. qunit: {
  18. files: [ 'test/**/*.html' ]
  19. },
  20. uglify: {
  21. options: {
  22. banner: '<%= meta.banner %>\n'
  23. },
  24. build: {
  25. src: 'js/reveal.js',
  26. dest: 'js/reveal.min.js'
  27. }
  28. },
  29. cssmin: {
  30. compress: {
  31. files: {
  32. 'css/reveal.min.css': [ 'css/reveal.css' ]
  33. }
  34. }
  35. },
  36. sass: {
  37. main: {
  38. files: {
  39. 'css/theme/default.css': 'css/theme/source/default.scss',
  40. 'css/theme/beige.css': 'css/theme/source/beige.scss',
  41. 'css/theme/night.css': 'css/theme/source/night.scss',
  42. 'css/theme/serif.css': 'css/theme/source/serif.scss',
  43. 'css/theme/simple.css': 'css/theme/source/simple.scss',
  44. 'css/theme/sky.css': 'css/theme/source/sky.scss',
  45. 'css/theme/moon.css': 'css/theme/source/moon.scss',
  46. 'css/theme/solarized.css': 'css/theme/source/solarized.scss'
  47. }
  48. }
  49. },
  50. jshint: {
  51. options: {
  52. curly: false,
  53. eqeqeq: true,
  54. immed: true,
  55. latedef: true,
  56. newcap: true,
  57. noarg: true,
  58. sub: true,
  59. undef: true,
  60. eqnull: true,
  61. browser: true,
  62. expr: true,
  63. globals: {
  64. head: false,
  65. module: false,
  66. console: false
  67. }
  68. },
  69. files: [ 'Gruntfile.js', 'js/reveal.js' ]
  70. },
  71. watch: {
  72. main: {
  73. files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
  74. tasks: 'default'
  75. },
  76. theme: {
  77. files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
  78. tasks: 'themes'
  79. }
  80. }
  81. });
  82. // Dependencies
  83. grunt.loadNpmTasks( 'grunt-contrib-jshint' );
  84. grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
  85. grunt.loadNpmTasks( 'grunt-contrib-uglify' );
  86. grunt.loadNpmTasks( 'grunt-contrib-watch' );
  87. grunt.loadNpmTasks( 'grunt-contrib-sass' );
  88. // Default task
  89. grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] );
  90. // Theme task
  91. grunt.registerTask( 'themes', [ 'sass' ] );
  92. };