Gruntfile.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* global module:false */
  2. module.exports = function(grunt) {
  3. var port = grunt.option('port') || 8000;
  4. // Project configuration
  5. grunt.initConfig({
  6. pkg: grunt.file.readJSON('package.json'),
  7. meta: {
  8. banner:
  9. '/*!\n' +
  10. ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
  11. ' * http://lab.hakim.se/reveal-js\n' +
  12. ' * MIT licensed\n' +
  13. ' *\n' +
  14. ' * Copyright (C) 2014 Hakim El Hattab, http://hakim.se\n' +
  15. ' */'
  16. },
  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. 'css/theme/blood.css': 'css/theme/source/blood.scss'
  48. }
  49. }
  50. },
  51. jshint: {
  52. options: {
  53. curly: false,
  54. eqeqeq: true,
  55. immed: true,
  56. latedef: true,
  57. newcap: true,
  58. noarg: true,
  59. sub: true,
  60. undef: true,
  61. eqnull: true,
  62. browser: true,
  63. expr: true,
  64. globals: {
  65. head: false,
  66. module: false,
  67. console: false,
  68. unescape: false
  69. }
  70. },
  71. files: [ 'Gruntfile.js', 'js/reveal.js' ]
  72. },
  73. connect: {
  74. server: {
  75. options: {
  76. port: port,
  77. base: '.'
  78. }
  79. }
  80. },
  81. zip: {
  82. 'reveal-js-presentation.zip': [
  83. 'index.html',
  84. 'css/**',
  85. 'js/**',
  86. 'lib/**',
  87. 'images/**',
  88. 'plugin/**'
  89. ]
  90. },
  91. watch: {
  92. main: {
  93. files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
  94. tasks: 'default'
  95. },
  96. theme: {
  97. files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
  98. tasks: 'themes'
  99. }
  100. }
  101. });
  102. // Dependencies
  103. grunt.loadNpmTasks( 'grunt-contrib-qunit' );
  104. grunt.loadNpmTasks( 'grunt-contrib-jshint' );
  105. grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
  106. grunt.loadNpmTasks( 'grunt-contrib-uglify' );
  107. grunt.loadNpmTasks( 'grunt-contrib-watch' );
  108. grunt.loadNpmTasks( 'grunt-contrib-sass' );
  109. grunt.loadNpmTasks( 'grunt-contrib-connect' );
  110. grunt.loadNpmTasks( 'grunt-zip' );
  111. // Default task
  112. grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify', 'qunit' ] );
  113. // Theme task
  114. grunt.registerTask( 'themes', [ 'sass' ] );
  115. // Package presentation to archive
  116. grunt.registerTask( 'package', [ 'default', 'zip' ] );
  117. // Serve presentation locally
  118. grunt.registerTask( 'serve', [ 'connect', 'watch' ] );
  119. // Run tests
  120. grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
  121. };