forked from morrisjs/morris.js
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Gruntfile.js
64 lines (62 loc) · 1.67 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
module.exports = function (grunt) {
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
coffee: {
lib: {
options: { bare: false },
files: {
'dist/morris.js': ['build/morris.coffee']
}
},
spec: {
options: { bare: true },
files: {
'build/spec.js': ['build/spec.coffee']
}
},
},
concat: {
'build/morris.coffee': {
options: {
banner: "### @license\n"+
"<%= pkg.name %> v<%= pkg.version %> \n"+
"https://pierresh.github.io/morris.js/\n"+
"Copyright <%= (new Date()).getFullYear() %> <%= pkg.author.name %> All rights reserved.\n" +
"Licensed under the <%= pkg.license %> License. ###\n",
},
src: [
'lib/morris.coffee',
'lib/morris.grid.coffee',
'lib/morris.hover.coffee',
'lib/morris.line.coffee',
'lib/morris.area.coffee',
'lib/morris.bar.coffee',
'lib/morris.donut.coffee'
],
dest: 'build/morris.coffee'
},
'build/spec.coffee': ['spec/support/**/*.coffee', 'spec/lib/**/*.coffee']
},
less: {
all: {
src: 'less/*.less',
dest: 'dist/morris.css',
options: {
compress: true
}
}
},
uglify: {
build: {
options: {
preserveComments: 'some'
},
files: {
'dist/morris.min.js': 'dist/morris.js'
}
}
}
});
grunt.registerTask('default', ['concat', 'coffee', 'less', 'uglify']);
};