-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
61 lines (49 loc) · 1.17 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* grunt-h5bp-cachebuster
* https://github.com/adam187/grunt-h5bp-cachebuster
*
* Copyright (c) 2013 Adam Misiorny
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
// Configuration.
grunt.initConfig({
// Jshint
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>',
],
options: {
jshintrc: '.jshintrc',
},
},
h5bp_cachebuster: {
css_bust_all_files: {
expand: true,
cwd: 'tests/fixtures/css/',
src: '**/*.css',
dest: 'tmp/css/'
},
},
// Before generating any new files, remove any previously-created files.
clean: {
tests: ['tmp'],
},
// Unit tests.
nodeunit: {
tests: ['tests/*_test.js'],
},
});
// Load this plugin's task.
grunt.loadTasks('tasks');
// Load deps tasks
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
// Register tasks
grunt.registerTask('test', ['clean', 'h5bp_cachebuster', 'nodeunit']);
grunt.registerTask('default', ['jshint', 'test']);
};