forked from microsoft/Angara.Chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
30 lines (28 loc) · 823 Bytes
/
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
/// <binding />
module.exports = function (grunt) {
grunt.initConfig({
bower: {
install: {
options: {
targetDir: 'src/Angara.ChartJS/lib',
layout: 'byType',
install: true,
verbose: false,
cleanTargetDir: false,
cleanBowerDir: false,
bowerOptions: {}
}
}
},
copy: {
chartjs: {
files: [
{ src: 'src/Angara.ChartJS/scripts/Chart.js', dest: 'dist/Chart.js'}
]
}
}
});
grunt.loadNpmTasks('grunt-bower-task');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['bower','copy']);
};