From c9ca3bc113100c4a8313cea3727531fe67edbf6f Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Sun, 25 Dec 2016 20:37:03 +0800 Subject: [PATCH] cleaned files --- src/web_console/web/public_js/bower.json | 24 +++++++++++++++++ src/web_console/web/public_js/script_bower.sh | 26 ------------------- 2 files changed, 24 insertions(+), 26 deletions(-) create mode 100644 src/web_console/web/public_js/bower.json delete mode 100644 src/web_console/web/public_js/script_bower.sh diff --git a/src/web_console/web/public_js/bower.json b/src/web_console/web/public_js/bower.json new file mode 100644 index 0000000..997a435 --- /dev/null +++ b/src/web_console/web/public_js/bower.json @@ -0,0 +1,24 @@ +{ + "name": "irext", + "version": "0.0.1", + "description": "console of irext", + "repository": { + "type": "git", + "url": "https://github.com/strawmanbobi/irext_console" + }, + "keywords": [ + "IRDA" + ], + "author": "strawmanbobi", + "license": "GPL", + "dependencies": { + "bootstrap": "^3.3.7", + "bootstrap-multiselect": "^0.9.13", + "bootstrap-spinner": "^1.1.1", + "bootstrap-table": "^1.11.0", + "highcharts": "^5.0.6", + "jquery": "^2.2.4", + "select2": "^4.0.3", + "toastr": "^2.1.3" + } +} diff --git a/src/web_console/web/public_js/script_bower.sh b/src/web_console/web/public_js/script_bower.sh deleted file mode 100644 index 84ed3aa..0000000 --- a/src/web_console/web/public_js/script_bower.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash -# run this script before you setup the irext web console -echo "running script of bower install needed by irext..." - -echo "npm install bower -g" -sudo npm install bower -g - -echo "bower install toastr" -bower install toastr --allow-root - -echo "bower install bootstrap-table" -bower install bootstrap-table --allow-root - -echo "bower install bootstrap-multiselect" -bower install bootstrap-multiselect --allow-root - -echo "bower install select2" -bower install select2 --allow-root - -echo "bower install bootstrap-spinner" -bower install bootstrap-spinner --allow-root - -echo "bower install highcharts" -bower install highcharts - -echo "bower install done"