This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
117 lines (110 loc) · 2.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*global module:false*/
module.exports = function(grunt) {
var JS_SOURCES = 'app/assets/javascript/src/**/*.js';
var JS_SPECS = 'test/javascript/specs/**/*spec.js';
var STYLESHEETS_PATH = "app/assets/stylesheets";
grunt.initConfig({
// Metadata, not needed but useful for future refence
pkg: grunt.file.readJSON('package.json'),
gruntfile: {
src: 'Gruntfile.js'
},
//JSHINT CONFIG
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
browser: true,
maxparams: 3,
globals: {
YUI: true,
YUI_config: true
}
},
gruntfile: {
src: 'Gruntfile.js'
},
sources: {
src: JS_SOURCES
}
},
//CONFIG FOR JASMINE TESTS
jasmine : {
sources: {
src : JS_SOURCES,
options : {
vendor : 'app/assets/javascript/vendor/**/*.js',
specs : JS_SPECS,
helpers : 'test/javascript/helpers/**/*.js',
template : 'test/javascript/YuiJasmineRunner.tmpl'
}
}
},
//CONFIG FOR LESS STYLESHEETS COMPILATION
less: {
compile: {
options: {
paths: [STYLESHEETS_PATH],
compress: true
},
files: {
"app/assets/stylesheets/style.css": "app/assets/stylesheets/style.less"
}
}
},
//WATCH CONFIG.
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile'],
options: {
forceWatchMethod: 'old',
interrupt: true
}
},
sources: {
files: '<%= jshint.sources.src %>',
tasks: ['jshint:sources', 'jasmine'],
options: {
forceWatchMethod: 'old',
interrupt: true
}
},
specs: {
files: JS_SPECS,
tasks: ['jshint:sources', 'jasmine'],
options: {
forceWatchMethod: 'old',
interrupt: true
}
},
stylesheets: {
files: STYLESHEETS_PATH + "/**/*.less",
tasks: ['less'],
options: {
forceWatchMethod: 'old',
interrupt: true
}
}
}
});
// Project configuration.
//Load tasks
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-less');
//Test with adding a local reference to a plugin
//grunt.loadTasks('../grunt-plugin-test/tasks');
// Default task.
grunt.registerTask('default', ['jshint','jasmine']);
};