forked from GraFiddle/angular-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
111 lines (93 loc) · 2.36 KB
/
Copy pathGruntfile.js
File metadata and controls
111 lines (93 loc) · 2.36 KB
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
'use strict';
module.exports = function (grunt) {
// default task
grunt.registerTask('default', ['jshint', 'karma:unit', 'build']);
// automatically execute the unit tests when a file changes
grunt.registerTask('watch', ['karma:watch']);
// generate coverage report and send it to coveralls
grunt.registerTask('coverage', ['karma:coverage', 'coveralls']);
// generate combined and minified distribution files
grunt.registerTask('build', ['compass', 'cssmin', 'concat', 'uglify']);
// load all grunt tasks
require('load-grunt-tasks')(grunt);
// perform test in Firefox on travis ci
var testConfig = function(configFile, customOptions) {
var options = { configFile: configFile, keepalive: true };
var travisOptions = process.env.TRAVIS && { browsers: ['Firefox'] };
return grunt.util._.extend(options, customOptions, travisOptions);
};
grunt.initConfig({
// Compiles the SCSS files to CSS
//
compass: {
dist: {
options: {
sassDir: 'src/scss',
specify: 'src/scss/angular-chart.scss', // only compile this
cssDir: 'css'
}
}
},
// Minifies the CSS code
//
cssmin: {
target: {
files: {
'css/angular-chart.min.css': ['css/angular-chart.css']
}
}
},
// Combines the JavaScript files
//
concat: {
dist: {
src: ['src/js/legend.js', 'src/js/chart.js'],
dest: 'angular-chart.js'
}
},
// Minifies the JavaScript code
//
uglify: {
dist: {
files: {
'angular-chart.min.js': ['src/js/legend.js', 'src/js/chart.js']
}
}
},
// Runs unit tests
//
karma: {
unit: {
options: testConfig('test/karma.conf.js')
},
watch: {
options: testConfig('test/karma.conf.js'),
singleRun: false,
autoWatch: true
},
coverage: {
options: testConfig('test/karma.conf.js'),
reporters: ['coverage']
}
},
// Sends coverage report to Coveralls
//
coveralls: {
options: {
debug: true,
coverageDir: 'coverage'
}
},
// Lints the code
//
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntfile: 'Gruntfile.js',
src: 'src/js/*.js',
test: 'test/*.js',
demo: 'demo/*.js'
}
});
};