fix: misc
This commit is contained in:
parent
b71b998148
commit
2a753b2ed7
4 changed files with 2 additions and 16 deletions
|
@ -12,7 +12,7 @@ import filters from './config/filters/index.js'
|
||||||
import { slugifyString } from './config/utils/index.js'
|
import { slugifyString } from './config/utils/index.js'
|
||||||
import { svgToJpeg } from './config/events/index.js'
|
import { svgToJpeg } from './config/events/index.js'
|
||||||
import { minifyJsComponents } 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'
|
import { img } from './config/shortcodes/index.js'
|
||||||
|
|
||||||
// load .env
|
// load .env
|
||||||
|
@ -93,8 +93,6 @@ export default async function (eleventyConfig) {
|
||||||
eleventyConfig.addCollection('tagMap', tagMap)
|
eleventyConfig.addCollection('tagMap', tagMap)
|
||||||
eleventyConfig.addCollection('postStats', postStats)
|
eleventyConfig.addCollection('postStats', postStats)
|
||||||
eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)
|
eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)
|
||||||
eleventyConfig.addCollection('artistsIndex', artistsIndex)
|
|
||||||
eleventyConfig.addCollection('albumsIndex', albumsIndex)
|
|
||||||
|
|
||||||
const md = markdownIt({ html: true, linkify: true })
|
const md = markdownIt({ html: true, linkify: true })
|
||||||
md.use(markdownItAnchor, {
|
md.use(markdownItAnchor, {
|
||||||
|
|
|
@ -34,10 +34,6 @@ export const searchIndex = (collection) => {
|
||||||
return searchIndex
|
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) => {
|
export const tagList = (collection) => {
|
||||||
const tagsSet = new Set()
|
const tagsSet = new Set()
|
||||||
collection.getAll().forEach((item) => {
|
collection.getAll().forEach((item) => {
|
||||||
|
|
7
package-lock.json
generated
7
package-lock.json
generated
|
@ -43,7 +43,6 @@
|
||||||
"markdown-it-footnote": "^4.0.0",
|
"markdown-it-footnote": "^4.0.0",
|
||||||
"sanitize-html": "^2.13.0",
|
"sanitize-html": "^2.13.0",
|
||||||
"slugify": "^1.6.6",
|
"slugify": "^1.6.6",
|
||||||
"string-sanitizer": "^2.0.2",
|
|
||||||
"terser": "^5.30.1",
|
"terser": "^5.30.1",
|
||||||
"writing-stats": "^1.0.6"
|
"writing-stats": "^1.0.6"
|
||||||
}
|
}
|
||||||
|
@ -6902,12 +6901,6 @@
|
||||||
"safe-buffer": "~5.2.0"
|
"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": {
|
"node_modules/strip-bom-string": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "11.3.1",
|
"version": "11.3.2",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -53,7 +53,6 @@
|
||||||
"markdown-it-footnote": "^4.0.0",
|
"markdown-it-footnote": "^4.0.0",
|
||||||
"sanitize-html": "^2.13.0",
|
"sanitize-html": "^2.13.0",
|
||||||
"slugify": "^1.6.6",
|
"slugify": "^1.6.6",
|
||||||
"string-sanitizer": "^2.0.2",
|
|
||||||
"terser": "^5.30.1",
|
"terser": "^5.30.1",
|
||||||
"writing-stats": "^1.0.6"
|
"writing-stats": "^1.0.6"
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue