fa20-bt/Gruntfile.js

83 lines
1.5 KiB
JavaScript
Raw Normal View History

2012-11-11 15:01:05 +00:00
/* global module:false */
module.exports = function(grunt) {
// Project configuration
grunt.initConfig({
2013-02-27 07:26:24 +00:00
pkg: grunt.file.readJSON('package.json'),
2012-11-11 15:01:05 +00:00
meta: {
2013-02-27 18:20:24 +00:00
banner:
2012-11-11 15:01:05 +00:00
'/*!\n' +
2013-02-27 07:26:24 +00:00
' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
2012-11-11 15:01:05 +00:00
' * http://lab.hakim.se/reveal-js\n' +
' * MIT licensed\n' +
' *\n' +
2013-02-06 01:08:59 +00:00
' * Copyright (C) 2013 Hakim El Hattab, http://hakim.se\n' +
2012-11-11 15:01:05 +00:00
' */'
},
2013-02-27 07:26:24 +00:00
jshint: {
files: [ 'Gruntfile.js', 'js/reveal.js' ]
2012-11-11 15:01:05 +00:00
},
// Tests will be added soon
qunit: {
files: [ 'test/**/*.html' ]
},
2013-02-27 07:26:24 +00:00
uglify: {
2013-02-27 18:20:24 +00:00
options: {
banner: '<%= meta.banner %>\n'
},
build: {
src: 'js/reveal.js',
dest: 'js/reveal.min.js'
}
2012-11-11 15:01:05 +00:00
},
2013-02-27 07:26:24 +00:00
cssmin: {
2012-11-11 15:01:05 +00:00
compress: {
files: {
2013-02-27 07:26:24 +00:00
'css/reveal.min.css': [ 'css/reveal.css' ]
2012-11-11 15:01:05 +00:00
}
}
},
jshint: {
options: {
curly: false,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
eqnull: true,
browser: true,
expr: true
},
globals: {
head: false,
module: false,
console: false
2012-11-11 15:01:05 +00:00
}
},
watch: {
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
2012-11-11 15:01:05 +00:00
tasks: 'default'
}
});
2013-02-03 16:27:28 +00:00
2012-11-11 15:01:05 +00:00
// Dependencies
2013-02-27 07:26:24 +00:00
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
2012-11-11 15:01:05 +00:00
// Default task
2013-02-27 07:26:24 +00:00
grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] );
2012-11-11 15:01:05 +00:00
};