From 547ba8366e3e4f7ac67d9a528c3b200a643ebec3 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 27 Aug 2020 07:49:20 +0200 Subject: [PATCH] add flot and font-awesome --- Gruntfile.js | 29 +++++++++++++++++++++++++++++ package.json | 2 ++ 2 files changed, 31 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 6a10f89dc..4551eb372 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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, diff --git a/package.json b/package.json index d0b223bea..055aa90d5 100644 --- a/package.json +++ b/package.json @@ -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",