-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
67 lines (54 loc) · 1.73 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['src/omega'],
options: {
jshintrc: ".jshintrc",
reporter: require('jshint-summary')
}
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['jshint']
},
clean: ["dist"],
requirejs: {
options: {
preserveLicenseComments: false,
optimize: "none"
},
omega: {
options: {
baseUrl: "src",
mainConfigFile: 'src/omega/config.release.js',
include: ["omega/main"],
exclude: ["jquery", "text"],
out: "dist/js/omega.js"
}
}
},
cssmin: {
dist: {
files: {
"dist/css/omega.min.css": "css/omega.css",
"dist/css/jquery-ui-1.10.0.custom.min.css": "css/jquery-ui-1.10.0.custom.css"
}
}
},
copy: {
dist: {
files: [
{ expand: true, src: ["images/*"], dest: "dist/" },
{ expand: true, src: ["LICENSE.md", "README.md" ], dest: "dist/" },
{ expand: true, src: ['bower_components/jquery/jquery.min.js'], dest: "dist/" }
]
}
},
});
// Default task(s).
grunt.registerTask('default', ['jshint']);
grunt.registerTask('dist', ['clean', 'requirejs', 'cssmin:dist', 'copy']);
};