diff --git a/.eleventy.js b/.eleventy.js index e31ddcee..0be1fef5 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -12,7 +12,7 @@ import filters from './config/filters/index.js' import { slugifyString } from './config/utils/index.js' import { svgToJpeg } from './config/events/index.js' import { minifyJsComponents } from './config/events/index.js' -import { searchIndex, tagList, tagMap, postStats, tagsSortedByCount, artistsIndex, albumsIndex } from './config/collections/index.js' +import { searchIndex, tagList, tagMap, postStats, tagsSortedByCount } from './config/collections/index.js' import { img } from './config/shortcodes/index.js' // load .env @@ -93,8 +93,6 @@ export default async function (eleventyConfig) { eleventyConfig.addCollection('tagMap', tagMap) eleventyConfig.addCollection('postStats', postStats) eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount) - eleventyConfig.addCollection('artistsIndex', artistsIndex) - eleventyConfig.addCollection('albumsIndex', albumsIndex) const md = markdownIt({ html: true, linkify: true }) md.use(markdownItAnchor, { diff --git a/config/collections/index.js b/config/collections/index.js index 16118b93..5048f759 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -34,10 +34,6 @@ export const searchIndex = (collection) => { return searchIndex } -export const artistsIndex = (collection) => collection.getAll()[0].data.musicCharts.year.artists - -export const albumsIndex = (collection) => collection.getAll()[0].data.musicCharts.year.albums - export const tagList = (collection) => { const tagsSet = new Set() collection.getAll().forEach((item) => { diff --git a/package-lock.json b/package-lock.json index a092b5a6..5cdcb0ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,7 +43,6 @@ "markdown-it-footnote": "^4.0.0", "sanitize-html": "^2.13.0", "slugify": "^1.6.6", - "string-sanitizer": "^2.0.2", "terser": "^5.30.1", "writing-stats": "^1.0.6" } @@ -6902,12 +6901,6 @@ "safe-buffer": "~5.2.0" } }, - "node_modules/string-sanitizer": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/string-sanitizer/-/string-sanitizer-2.0.2.tgz", - "integrity": "sha512-zECtWmUawolaVbUOdDRdhAM4jN7wl1sB4indjTmHpUFavzFSeYEDSVF85dZPPyDKoMRTJbrz+Tp0SjPPCWxscA==", - "dev": true - }, "node_modules/strip-bom-string": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", diff --git a/package.json b/package.json index 59c342f5..b8947403 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "11.3.1", + "version": "11.3.2", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { @@ -53,7 +53,6 @@ "markdown-it-footnote": "^4.0.0", "sanitize-html": "^2.13.0", "slugify": "^1.6.6", - "string-sanitizer": "^2.0.2", "terser": "^5.30.1", "writing-stats": "^1.0.6" }