add flot and font-awesome

This commit is contained in:
Uwe Steinmann 2020-08-27 07:49:20 +02:00
parent e962a33133
commit 547ba8366e
2 changed files with 31 additions and 0 deletions

View File

@ -103,6 +103,35 @@ module.exports = function (grunt) {
flatten: true
}]
},
'flot': {
files: [{
expand: true,
src: [
nodeDir + '/flot/source/jquery.canvaswrapper.js',
nodeDir + '/flot/source/jquery.colorhelpers.js',
nodeDir + '/flot/source/jquery.flot.*'
],
dest: vendorDir + '/flot',
flatten: true
}]
},
'font-awesome': {
files: [{
expand: true,
src: [
nodeDir + '/font-awesome/fonts/*'
],
dest: vendorDir + '/font-awesome/fonts',
flatten: true
},{
expand: true,
src: [
nodeDir + '/font-awesome/css/*'
],
dest: vendorDir + '/font-awesome/css',
flatten: true
}]
},
'fullcalendar': {
files: [{
expand: true,

View File

@ -14,6 +14,8 @@
"chartjs": "^0.3.24",
"cytoscape": "^3.15.2",
"fine-uploader": "^5.16.2",
"flot": "^4.2.1",
"font-awesome": "^4.7.0",
"fullcalendar": "^3.*",
"grunt": "^1.3.0",
"grunt-contrib-clean": "^2.0.0",