From d0066a2dd9f12f08fd0dd4330243564fa01c9dff Mon Sep 17 00:00:00 2001 From: Ivan Shmidt Date: Fri, 8 May 2020 16:48:11 +0200 Subject: [PATCH] feat: plugin description --- plugins/circleci/package.json | 20 +++++++++---------- .../components/PluginHeader/PluginHeader.tsx | 5 ++++- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/plugins/circleci/package.json b/plugins/circleci/package.json index f2c94f06e1..e6f67781a1 100644 --- a/plugins/circleci/package.json +++ b/plugins/circleci/package.json @@ -12,16 +12,6 @@ "test": "backstage-cli test", "clean": "backstage-cli clean" }, - "devDependencies": { - "@backstage/cli": "^0.1.1-alpha.4", - "@testing-library/jest-dom": "^4.2.4", - "@testing-library/react": "^9.3.2", - "@testing-library/user-event": "^7.1.2", - "@types/jest": "^24.0.0", - "@types/node": "^12.0.0", - "@types/testing-library__jest-dom": "5.0.2", - "jest-fetch-mock": "^3.0.3" - }, "dependencies": { "@backstage/core": "^0.1.1-alpha.4", "@backstage/theme": "^0.1.1-alpha.4", @@ -39,6 +29,16 @@ "react-router": "^5.1.2", "react-use": "^13.0.0" }, + "devDependencies": { + "@backstage/cli": "^0.1.1-alpha.4", + "@testing-library/jest-dom": "^4.2.4", + "@testing-library/react": "^9.3.2", + "@testing-library/user-event": "^7.1.2", + "@types/jest": "^24.0.0", + "@types/node": "^12.0.0", + "@types/testing-library__jest-dom": "5.0.2", + "jest-fetch-mock": "^3.0.3" + }, "files": [ "dist" ] diff --git a/plugins/circleci/src/components/PluginHeader/PluginHeader.tsx b/plugins/circleci/src/components/PluginHeader/PluginHeader.tsx index 9676f86e42..c5f62044dd 100644 --- a/plugins/circleci/src/components/PluginHeader/PluginHeader.tsx +++ b/plugins/circleci/src/components/PluginHeader/PluginHeader.tsx @@ -32,7 +32,10 @@ export const PluginHeader: FC = ({ title = 'Circle CI' }) => { Settings )} - A description of your plugin goes here. + + This plugin allows you to view and interact with your builds within the + Circle CI environment. + ); };