-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
46 lines (43 loc) · 1.21 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
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
qunit: {
files: ['tests.html']
}
// jshint: {
// options: {
// curly: false,
// eqeqeq: false,
// immed: true,
// latedef: true,
// newcap: true,
// noarg: true,
// sub: true,
// undef: true,
// boss: true,
// eqnull: true,
// browser: true,
// asi: true,
// devel: true,
// globals: {
// requirejs: true,
// jQuery: true,
// require: true,
// define: true,
// _: true
// }
// },
// all: ['Gruntfile.js', 'app/assets/js/!(lib|plugins|templates|tmpl|ui)/**/*.js', 'app/assets/test/**/*.js']
// },
});
// grunt.registerTask('test', ['jshint', 'qunit'])
grunt.registerTask('test', ['qunit'])
// load the grunt task plugins
grunt.loadNpmTasks('grunt-contrib-qunit');
// grunt.loadNpmTasks('grunt-contrib-compress')
// grunt.loadNpmTasks('grunt-contrib-concat')
// grunt.loadNpmTasks('grunt-contrib-copy')
// grunt.loadNpmTasks('grunt-contrib-jshint')
// grunt.loadNpmTasks('grunt-contrib-uglify')
};