141 lines
4.5 KiB
JavaScript
141 lines
4.5 KiB
JavaScript
import syntaxHighlight from '@11ty/eleventy-plugin-syntaxhighlight'
|
|
import tablerIcons from '@cdransf/eleventy-plugin-tabler-icons'
|
|
import lightningCSS from '@11tyrocks/eleventy-plugin-lightningcss'
|
|
|
|
import markdownIt from 'markdown-it'
|
|
import markdownItAnchor from 'markdown-it-anchor'
|
|
import markdownItFootnote from 'markdown-it-footnote'
|
|
import htmlmin from 'html-minifier-terser'
|
|
|
|
import filters from './config/filters/index.js'
|
|
import { minifyJsComponents } from './config/events/index.js'
|
|
import { allContent, searchIndex, tagList, tagsSortedByCount, links, tagMap, booksToRead } from './config/collections/index.js'
|
|
import { DateTime } from 'luxon'
|
|
|
|
// load .env
|
|
import dotenvFlow from 'dotenv-flow'
|
|
dotenvFlow.config()
|
|
|
|
// get app version
|
|
import { createRequire } from 'module'
|
|
|
|
const require = createRequire(import.meta.url)
|
|
const appVersion = require('./package.json').version
|
|
|
|
export default async function (eleventyConfig) {
|
|
eleventyConfig.addPlugin(syntaxHighlight)
|
|
eleventyConfig.addPlugin(tablerIcons)
|
|
eleventyConfig.addPlugin(lightningCSS)
|
|
|
|
// quiet build output
|
|
eleventyConfig.setQuietMode(true)
|
|
|
|
// template options
|
|
eleventyConfig.setLiquidOptions({
|
|
jsTruthy: true,
|
|
})
|
|
|
|
// passthrough
|
|
eleventyConfig.addPassthroughCopy('src/assets')
|
|
eleventyConfig.addPassthroughCopy('_redirects')
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/minisearch/dist/umd/index.js': 'assets/scripts/components/minisearch.js',
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/@cdransf/api-text/api-text.js': 'assets/scripts/components/api-text.js',
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/@cdransf/theme-toggle/theme-toggle.js': 'assets/scripts/components/theme-toggle.js',
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/@cdransf/select-pagination/select-pagination.js': 'assets/scripts/components/select-pagination.js',
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/@zachleat/webcare-webshare/webcare-webshare.js': 'assets/scripts/components/webcare-webshare.js'
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/youtube-video-element/youtube-video-element.js': 'assets/scripts/components/youtube-video-element.js'
|
|
})
|
|
eleventyConfig.addPassthroughCopy({
|
|
'node_modules/@daviddarnes/mastodon-post/mastodon-post.js': 'assets/scripts/components/mastodon-post.js'
|
|
})
|
|
|
|
// enable merging of tags
|
|
eleventyConfig.setDataDeepMerge(true)
|
|
|
|
// create excerpts
|
|
eleventyConfig.setFrontMatterParsingOptions({
|
|
excerpt: true,
|
|
excerpt_alias: 'post_excerpt',
|
|
excerpt_separator: '<!-- excerpt -->',
|
|
})
|
|
|
|
// collections
|
|
eleventyConfig.addCollection('allContent', allContent)
|
|
eleventyConfig.addCollection('searchIndex', searchIndex)
|
|
eleventyConfig.addCollection('tagList', tagList)
|
|
eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)
|
|
eleventyConfig.addCollection('links', links)
|
|
eleventyConfig.addCollection('tagMap', tagMap)
|
|
eleventyConfig.addCollection('booksToRead', booksToRead)
|
|
|
|
const md = markdownIt({ html: true, linkify: true })
|
|
md.use(markdownItAnchor, {
|
|
level: [1, 2],
|
|
permalink: markdownItAnchor.permalink.headerLink({
|
|
safariReaderFix: true,
|
|
}),
|
|
})
|
|
md.use(markdownItFootnote)
|
|
eleventyConfig.setLibrary('md', md)
|
|
|
|
// filters
|
|
eleventyConfig.addLiquidFilter('markdown', (content) => {
|
|
if (!content) return
|
|
return md.render(content)
|
|
})
|
|
|
|
Object.keys(filters).forEach((filterName) => {
|
|
eleventyConfig.addLiquidFilter(filterName, filters[filterName])
|
|
})
|
|
|
|
// shortcodes
|
|
eleventyConfig.addShortcode('appVersion', () => appVersion)
|
|
eleventyConfig.addShortcode('currentYear', () => DateTime.now().year)
|
|
|
|
// transforms
|
|
eleventyConfig.addTransform('html-minify', (content, path) => {
|
|
if (path && path.endsWith('.html')) {
|
|
return htmlmin.minify(content, {
|
|
collapseBooleanAttributes: true,
|
|
collapseWhitespace: true,
|
|
decodeEntities: true,
|
|
includeAutoGeneratedTags: false,
|
|
minifyCSS: true,
|
|
minifyJS: true,
|
|
minifyURLs: true,
|
|
noNewlinesBeforeTagClose: true,
|
|
quoteCharacter: '"',
|
|
removeComments: true,
|
|
sortAttributes: true,
|
|
sortClassName: true,
|
|
useShortDoctype: true,
|
|
processScripts: ['application/ld+json'], // minify JSON-LD scripts
|
|
})
|
|
}
|
|
return content
|
|
})
|
|
|
|
// events
|
|
eleventyConfig.on('afterBuild', minifyJsComponents)
|
|
|
|
return {
|
|
passthroughFileCopy: true,
|
|
dir: {
|
|
input: 'src',
|
|
includes: '_includes',
|
|
data: '_data',
|
|
output: '_site',
|
|
},
|
|
}
|
|
}
|