forked from ducksboard/gridster.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
123 lines (111 loc) · 4.14 KB
/
grunt.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
118
119
120
121
122
123
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: '<json:package.json>',
meta: {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
},
concat: {
dist_js: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/jquery.coords.js>', '<file_strip_banner:src/jquery.collision.js>', 'src/utils.js', '<file_strip_banner:src/jquery.draggable.js>', '<file_strip_banner:src/<%= pkg.name %>.js>'],
dest: 'dist/<%= pkg.name %>.js'
},
dist_extras_js: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/jquery.coords.js>', '<file_strip_banner:src/jquery.collision.js>', 'src/utils.js', '<file_strip_banner:src/jquery.draggable.js>', '<file_strip_banner:src/<%= pkg.name %>.js>', '<file_strip_banner:src/<%= pkg.name %>.extras.js>'],
dest: 'dist/<%= pkg.name %>.with-extras.js'
},
dist_css: {
src: ['<banner:meta.banner>', 'src/<%= pkg.name %>.css'],
dest: 'dist/<%= pkg.name %>.css'
},
dist_demo_js: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/jquery.coords.js>', '<file_strip_banner:src/jquery.collision.js>', 'src/utils.js', '<file_strip_banner:src/jquery.draggable.js>', '<file_strip_banner:src/<%= pkg.name %>.js>'],
dest: 'gh-pages/dist/<%= pkg.name %>.js'
},
dist_extras_demo_js: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/jquery.coords.js>', '<file_strip_banner:src/jquery.collision.js>', 'src/utils.js', '<file_strip_banner:src/jquery.draggable.js>', '<file_strip_banner:src/<%= pkg.name %>.js>', '<file_strip_banner:src/<%= pkg.name %>.extras.js>'],
dest: 'gh-pages/dist/<%= pkg.name %>.with-extras.js'
},
dist_demo_css: {
src: ['<banner:meta.banner>', 'src/<%= pkg.name %>.css'],
dest: 'gh-pages/dist/<%= pkg.name %>.css'
}
},
min: {
dist: {
src: ['<banner:meta.banner>', '<config:concat.dist_js.dest>'],
dest: 'dist/<%= pkg.name %>.min.js'
},
dist_extras: {
src: ['<banner:meta.banner>', '<config:concat.dist_extras_js.dest>'],
dest: 'dist/<%= pkg.name %>.with-extras.min.js'
},
dist_demo: {
src: ['<banner:meta.banner>', '<config:concat.dist_js.dest>'],
dest: 'gh-pages/dist/<%= pkg.name %>.min.js'
},
dist_extras_demo: {
src: ['<banner:meta.banner>', '<config:concat.dist_extras_js.dest>'],
dest: 'gh-pages/dist/<%= pkg.name %>.with-extras.min.js'
}
},
mincss: {
compress: {
files: {
"dist/<%= pkg.name %>.min.css": ["dist/<%= pkg.name %>.css"],
"gh-pages/dist/<%= pkg.name %>.min.css": ["dist/<%= pkg.name %>.css"]
}
}
},
qunit: {
files: ['test/**/*.html']
},
lint: {
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
},
watch: {
files: ['<config:lint.files>', 'src/<%= pkg.name %>.css'],
tasks: 'min concat'
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
browser: true
},
globals: {
jQuery: true
}
},
uglify: {},
yuidoc: {
compile: {
"name": 'gridster.js',
"description": 'gridster.js, a drag-and-drop multi-column jQuery grid plugin',
"version": '0.1.0',
"url": 'http://gridster.net/',
"logo": 'http://ducksboard.com/wp-content/themes/blog-theme-ducksboard/images/ducksboard.png',
options: {
paths: "src/",
outdir: "gh-pages/docs/"
}
}
}
});
grunt.loadNpmTasks('grunt-contrib');
// Default task.
grunt.registerTask('default', 'lint qunit concat min mincss yuidoc');
};