From 0d054d7ad36848d2623d20fce92443fc3609b64c Mon Sep 17 00:00:00 2001
From: Muescha <184316+muescha@users.noreply.github.com>
Date: Sat, 15 Feb 2020 00:24:42 +0100
Subject: [PATCH 1/2] fix links to cypress
---
www/src/views/starter/details.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/src/views/starter/details.js b/www/src/views/starter/details.js
index 79faee7d4463d..1ad6c75104fd2 100644
--- a/www/src/views/starter/details.js
+++ b/www/src/views/starter/details.js
@@ -57,7 +57,7 @@ const Details = ({
>
{shownDeps &&
shownDeps.map(dep =>
- /^gatsby-/.test(dep) ? (
+ /^gatsby-/.test(dep) && dep !== `gatsby-cypress` ? (
{dep}
From 860a50a1cf57c4ed6a2cc6581a6bd93493377562 Mon Sep 17 00:00:00 2001
From: Ward Peeters
Date: Fri, 28 Feb 2020 16:30:42 +0100
Subject: [PATCH 2/2] Update details.js
---
www/src/views/starter/details.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/www/src/views/starter/details.js b/www/src/views/starter/details.js
index 1ad6c75104fd2..37e1c5debd1d3 100644
--- a/www/src/views/starter/details.js
+++ b/www/src/views/starter/details.js
@@ -57,6 +57,8 @@ const Details = ({
>
{shownDeps &&
shownDeps.map(dep =>
+ // gatsby-cypress is a helper plugin and not shown inside our plugins section
+ // for that reason we are excluding it from our list of plugins
/^gatsby-/.test(dep) && dep !== `gatsby-cypress` ? (
{dep}