From d8db08a522abb7b51fd2c4e01fdb6575dc7d4dbf Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 12 Apr 2020 02:36:54 +0900 Subject: [PATCH 1/2] DOC: Update couple typos in docs/FAQ.md * open soure -> open source * forbenchmarking -> for benchmarking --- docs/FAQ.md | 2 +- plugins/lighthouse/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index c79d9c1f60..cbe1b8ab2b 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -17,7 +17,7 @@ and a large flora of components. Additional open sourced plugins would be added to the `plugins` directory in this monorepo. -While we encourage using the open soure model, integrators that want to experiment with +While we encourage using the open source model, integrators that want to experiment with Backstage internally may also choose to develop closed source plugins in a manner that suits them best, for example in their respective Backstage source repository. diff --git a/plugins/lighthouse/README.md b/plugins/lighthouse/README.md index 29439b9772..d457662377 100644 --- a/plugins/lighthouse/README.md +++ b/plugins/lighthouse/README.md @@ -7,7 +7,7 @@ A frontend for [lighthouse-audit-service](https://github.com/spotify/lighthouse- ### Use cases Google's [Lighthouse](https://developers.google.com/web/tools/lighthouse) auditing tool for websites -is a great open-source resource forbenchmarking and improving the accessibility, performance, SEO, and best practices of your site. +is a great open-source resource for benchmarking and improving the accessibility, performance, SEO, and best practices of your site. At Spotify, we keep track of Lighthouse audit scores over time to look at trends and overall areas for investment. This plugin allows you to generate on-demand Lighthouse audits for websites, and to track the trends for the From 049f3803d5810ea0d59d48f5f6e2ac185bd896d7 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 12 Apr 2020 03:09:07 +0900 Subject: [PATCH 2/2] DOC: createPlugin and router reference docs are now here --- docs/getting-started/structure-of-a-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/structure-of-a-plugin.md b/docs/getting-started/structure-of-a-plugin.md index 2b31221373..361546a1b6 100644 --- a/docs/getting-started/structure-of-a-plugin.md +++ b/docs/getting-started/structure-of-a-plugin.md @@ -54,7 +54,7 @@ export default createPlugin({ }); ``` -This is where the plugin is created and where it hooks into the app by declaring what component should be shown on what url. See reference docs for [createPlugin(coming soon)](http://github.com/spotify/backstage/) or [router(coming soon)](http://github.com/spotify/backstage/). +This is where the plugin is created and where it hooks into the app by declaring what component should be shown on what url. See reference docs for [createPlugin](../reference/createPlugin.md) or [router](../reference/createPlugin-router.md). ## Components