From 94cc7ad440cef7503fab944da3530358bbc2e060 Mon Sep 17 00:00:00 2001 From: Chris Draycott-Wheatley Date: Thu, 30 Apr 2020 16:51:11 +0100 Subject: [PATCH 1/2] fix link to json file by making relative --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e2f51274..2496a7b7f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ For more information see the [@Netlify/build](https://github.com/netlify/build) Below are plugins created by some awesome people! ❤️ -To add a plugin, add informations to the [plugins.json file]('./plugins.json'). +To add a plugin, add informations to the [plugins.json file](plugins.json). Plugin count: **18** 🎉 @@ -35,11 +35,11 @@ Plugin count: **18** 🎉 | **[Subfont - `netlify-plugin-subfont`](https://github.com/munter/netlify-plugin-subfont)**
Subfont post-processes your web page to analyse you usage of web fonts, then reworks your webpage to use an optimal font loading strategy for the best performance. | [munter](https://github.com/munter) | -To add a plugin, add informations to the [plugins.json file]('./plugins.json'). +To add a plugin, add informations to the [plugins.json file](plugins.json). ## Contributing -1. To add a plugin, add informations to the [plugins.json file]('./plugins.json'). +1. To add a plugin, add informations to the [plugins.json file](plugins.json). 2. Then run `npm run docs` to regenerate the plugins table! From 661692318b17241adbe62fb1b59281a9ec05a284 Mon Sep 17 00:00:00 2001 From: Chris Draycott-Wheatley Date: Thu, 30 Apr 2020 16:53:36 +0100 Subject: [PATCH 2/2] add image optim plugin --- README.md | 3 ++- plugins.json | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2496a7b7f..635fbd292 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Below are plugins created by some awesome people! ❤️ To add a plugin, add informations to the [plugins.json file](plugins.json). -Plugin count: **18** 🎉 +Plugin count: **19** 🎉 | Plugin | Author | |:---------------------------|:-----------:| @@ -26,6 +26,7 @@ Plugin count: **18** 🎉 | **[Gatsby Cache - `netlify-plugin-gatsby-cache`](https://github.com/jlengstorf/netlify-plugin-gatsby-cache)**
Persist the Gatsby cache between Netlify builds for huge build speed improvements! ⚡️ | [jlengstorf](https://github.com/jlengstorf) | | **[Ghost Markdown - `netlify-plugin-ghost-markdown`](https://github.com/daviddarnes/netlify-plugin-ghost-markdown)**
Generates posts and pages from a Ghost publication as markdown files, using the Ghost Content API. | [daviddarnes](https://github.com/daviddarnes) | | **[Hashfiles - `netlify-plugin-hashfiles`](https://github.com/munter/netlify-plugin-hashfiles)**
Hashfiles sets you up with an optimal caching strategy for static sites, where static assets across pages are cached for as long as possible in the visitors browser and never have to be re-requested. | [munter](https://github.com/munter) | +| **[Image Optim - `netlify-plugin-image-optim`](https://github.com/chrisdwheatley/netlify-plugin-image-optim)**
Optimize images as part of your Netlify build process. Optimizes PNG, JPEG, GIF and SVG file formats. | [chrisdwheatley](https://github.com/chrisdwheatley) | | **[Next.js Cache - `netlify-plugin-cache-nextjs`](https://github.com/pizzafox/netlify-cache-nextjs)**
Cache the .next build folder between builds | [pizzafox](https://github.com/pizzafox) | | **[No More 404 - `netlify-plugin-no-more-404`](https://github.com/sw-yx/netlify-plugin-no-more-404)**
Check that you preserve your own internal URL structure between builds, accounting for Netlify Redirects. Don't break the web! | [sw-yx](https://github.com/sw-yx) | | **[Prisma Provider - `netlify-plugin-prisma-provider`](https://github.com/redwoodjs/netlify-plugin-prisma-provider)**
Replaces the database provider in Prisma's schema.prisma at build time | [cannikin](https://github.com/cannikin) | diff --git a/plugins.json b/plugins.json index f8ba9160f..8d5982339 100644 --- a/plugins.json +++ b/plugins.json @@ -124,5 +124,12 @@ "name": "Contextual ENV", "package": "netlify-plugin-contextual-env", "repo": "https://github.com/cball/netlify-plugin-contextual-env" + }, + { + "author": "chrisdwheatley", + "description": "Optimize images as part of your Netlify build process. Optimizes PNG, JPEG, GIF and SVG file formats.", + "name": "Image Optim", + "package": "netlify-plugin-image-optim", + "repo": "https://github.com/chrisdwheatley/netlify-plugin-image-optim" } ]