From dff524e2f29db9540f46b4bd1f8789b6a59d3473 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 1 May 2024 17:47:43 -0700 Subject: [PATCH] fix: dep --- .eleventy.js | 1 - config/shortcodes/index.js | 54 -------------------------------------- package.json | 2 +- 3 files changed, 1 insertion(+), 56 deletions(-) delete mode 100644 config/shortcodes/index.js diff --git a/.eleventy.js b/.eleventy.js index 097e9204..a421760b 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -117,7 +117,6 @@ export default async function (eleventyConfig) { eleventyConfig.addFilter('slugify', slugifyString) // shortcodes - eleventyConfig.addShortcode('image', img) eleventyConfig.addShortcode('appVersion', () => appVersion) // transforms diff --git a/config/shortcodes/index.js b/config/shortcodes/index.js deleted file mode 100644 index 515ae2a2..00000000 --- a/config/shortcodes/index.js +++ /dev/null @@ -1,54 +0,0 @@ -import Image from '@11ty/eleventy-img' -import htmlmin from 'html-minifier-terser' - -const stringifyAttributes = (attributeMap) => { - return Object.entries(attributeMap) - .map(([attribute, value]) => { - if (typeof value === 'undefined') return ''; - return `${attribute}="${value}"`; - }) - .join(' '); -}; - -export const img = async ( - src, - alt = '', - className, - loading = 'lazy', - sizes = '90vw', - formats = ['avif', 'webp', 'jpg', 'jpeg'] -) => { - const widths = [80, 200, 320, 570, 880, 1024, 1248]; - const metadata = await Image(src, { - widths: [...widths], - formats: [...formats], - outputDir: './_site/assets/img/cache/', - urlPath: '/assets/img/cache/' - }); - - const lowsrc = metadata.jpeg[metadata.jpeg.length - 1]; - - const imageSources = Object.values(metadata) - .map((imageFormat) => { - return ` `; - }) - .join('\n'); - - const imageAttributes = stringifyAttributes({ - src: lowsrc.url, - width: lowsrc.width, - height: lowsrc.height, - alt, - class: className, - loading, - decoding: 'async', - }); - - const imageElement = `${imageSources}`; - - return htmlmin.minify(imageElement, { collapseWhitespace: true }); -}; \ No newline at end of file diff --git a/package.json b/package.json index 5fc1c562..06d350bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.4.0", + "version": "13.4.1", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {