This repository has been archived by the owner on May 6, 2020. It is now read-only.
forked from morrisjs/morris.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
64 lines (62 loc) · 1.47 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({
coffee: {
lib: {
options: { bare: false },
files: {
'morris.js': ['build/morris.coffee']
}
},
spec: {
options: { bare: true },
files: {
'build/spec.js': ['build/spec.coffee']
}
},
},
concat: {
'build/morris.coffee': [
'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'
],
'build/spec.coffee': ['spec/support/**/*.coffee', 'spec/lib/**/*.coffee']
},
less: {
all: {
src: 'less/*.less',
dest: 'morris.css',
options: {
compress: true
}
}
},
uglify: {
build: {
files: {
'morris.min.js': 'morris.js'
}
}
},
mocha: {
index: ['spec/specs.html'],
options: {run: true}
},
watch: {
all: {
files: ['lib/**/*.coffee', 'spec/lib/**/*.coffee', 'spec/support/**/*.coffee', 'less/**/*.less'],
tasks: 'default'
},
dev: {
files: 'lib/*.coffee' ,
tasks: ['concat:build/morris.coffee', 'coffee:lib']
}
},
});
grunt.registerTask('default', ['concat', 'coffee', 'less', 'uglify', 'mocha']);
};