chore: clean up data files
This commit is contained in:
parent
77e6fe27e3
commit
cce53c2656
15 changed files with 98 additions and 129 deletions
|
@ -74,7 +74,7 @@ export default async function (eleventyConfig) {
|
||||||
})
|
})
|
||||||
eleventyConfig.addPassthroughCopy({
|
eleventyConfig.addPassthroughCopy({
|
||||||
'node_modules/@daviddarnes/mastodon-post/mastodon-post.js': 'assets/scripts/components/mastodon-post.js'
|
'node_modules/@daviddarnes/mastodon-post/mastodon-post.js': 'assets/scripts/components/mastodon-post.js'
|
||||||
})
|
})
|
||||||
|
|
||||||
// enable merging of tags
|
// enable merging of tags
|
||||||
eleventyConfig.setDataDeepMerge(true)
|
eleventyConfig.setDataDeepMerge(true)
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
import { DateTime } from 'luxon'
|
import { DateTime } from 'luxon'
|
||||||
import markdownIt from 'markdown-it'
|
import markdownIt from 'markdown-it'
|
||||||
import { URL } from 'url'
|
import { URL } from 'url'
|
||||||
import { createRequire } from 'module'
|
|
||||||
import sanitizeHtml from 'sanitize-html';
|
import sanitizeHtml from 'sanitize-html';
|
||||||
import authors from '../data/author-map.js'
|
import authors from '../data/author-map.js'
|
||||||
|
|
||||||
const require = createRequire(import.meta.url)
|
|
||||||
const metaData = require('../../src/_data/json/meta.json')
|
|
||||||
|
|
||||||
const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi
|
const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi
|
||||||
const BASE_URL = 'https://coryd.dev'
|
const BASE_URL = 'https://coryd.dev'
|
||||||
|
|
||||||
|
@ -132,11 +128,12 @@ export default {
|
||||||
const STATUS_URL = 'https://social.lol/@cory/'
|
const STATUS_URL = 'https://social.lol/@cory/'
|
||||||
return posts[url]?.toots?.[0]?.replace(BASE_URL, STATUS_URL) || null;
|
return posts[url]?.toots?.[0]?.replace(BASE_URL, STATUS_URL) || null;
|
||||||
},
|
},
|
||||||
absoluteUrl: (url, base) => {
|
absoluteUrl: (url) => {
|
||||||
if (!base) base = metaData.url
|
|
||||||
try {
|
try {
|
||||||
return (new URL(url, base)).toString()
|
return (new URL(url, BASE_URL)).toString()
|
||||||
} catch(e) {}
|
} catch(e) {
|
||||||
|
console.log('Error generating absoluteUrl.')
|
||||||
|
}
|
||||||
return url;
|
return url;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "13.6.13",
|
"version": "13.6.14",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "13.6.13",
|
"version": "13.6.14",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.2.2",
|
"@cdransf/api-text": "^1.2.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "13.6.13",
|
"version": "13.6.14",
|
||||||
"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": {
|
||||||
|
|
|
@ -43,8 +43,6 @@ const svgToPNG = async (filePath) => {
|
||||||
|
|
||||||
await fs.mkdir(outputDir, { recursive: true })
|
await fs.mkdir(outputDir, { recursive: true })
|
||||||
await sharp(Buffer.from(svgContent)).png().toFile(outputFile)
|
await sharp(Buffer.from(svgContent)).png().toFile(outputFile)
|
||||||
|
|
||||||
console.log(`Generated png at ${outputFile}`)
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error processing file:', error)
|
console.error('Error processing file:', error)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
import artistCapitalizationPatches from './json/artist-capitalization-patches.js';
|
|
||||||
|
|
||||||
export default async function () {
|
|
||||||
return artistCapitalizationPatches
|
|
||||||
}
|
|
|
@ -1,5 +1,36 @@
|
||||||
import blogroll from './json/blogroll.js'
|
|
||||||
|
|
||||||
export default async function () {
|
export default async function () {
|
||||||
return blogroll
|
return [
|
||||||
|
{ "name": "Adam Newbold", "url": "https://notes.neatnik.net", "feed": "https://notes.neatnik.net" },
|
||||||
|
{ "name": "Adrianna Tan", "url": "https://popagandhi.com", "feed": "https://popagandhi.com/feed.xml", "newsletter": "https://buttondown.email/skinnylatte" },
|
||||||
|
{ "name": "Ashur Cabrera", "url": "https://multiline.co/mment", "feed": "https://multiline.co/mment/feed.xml" },
|
||||||
|
{ "name": "BinaryDigit", "url": "https://binarydigit.cafe", "feed": "https://binarydigit.cafe/feed.xml" },
|
||||||
|
{ "name": "Chris Burnell", "url": "https://chrisburnell.com", "feed": "https://chrisburnell.com/feed.xml" },
|
||||||
|
{ "name": "Chris Coyier", "url": "https://chriscoyier.net", "feed": "https://chriscoyier.net/feed/" },
|
||||||
|
{ "name": "Chris Ferdinandi", "url": "https://gomakethings.com", "feed": "https://gomakethings.com/feed/index.xml", "newsletter": "https://gomakethings.com" },
|
||||||
|
{ "name": "Chris McLeod", "url": "https://chrismcleod.dev", "feed": "https://chrismcleod.dev/feed.xml" },
|
||||||
|
{ "name": "Dave Rupert", "url": "https://daverupert.com", "feed": "https://daverupert.com/atom.xml" },
|
||||||
|
{ "name": "Ethan Marcotte", "url": "https://ethanmarcotte.com/wrote/", "feed": "https://ethanmarcotte.com/wrote/feed.xml" },
|
||||||
|
{ "name": "fLaMEd", "url": "https://flamedfury.com", "feed": "https://flamedfury.com/feed.xml" },
|
||||||
|
{ "name": "Jim Nielsen", "url": "https://blog.jim-nielsen.com", "feed": "https://blog.jim-nielsen.com/feed.xml", "json": "https://blog.jim-nielsen.com/feed.json" },
|
||||||
|
{ "name": "Joe Steel", "url": "https://joe-steel.com", "feed": "https://joe-steel.com/feed.xml" },
|
||||||
|
{ "name": "Joan Westenberg", "url": "https://joanwestenberg.com", "feed": "https://joanwestenberg.com/blog?format=rss", "newsletter": "https://joanwestenberg.com/subscribe" },
|
||||||
|
{ "name": "Juha-Matti Santala", "url": "https://hamatti.org", "feed": "https://hamatti.org/feed/feed.xml", "newsletter":"https://www.syntaxerror.tech" },
|
||||||
|
{ "name": "Keenan", "url": "https://gkeenan.co/avgb", "feed": "https://gkeenan.co/avglb?format=rss" },
|
||||||
|
{ "name": "Kev Quirk", "url": "https://kevq.uk", "feed": "https://kevq.uk/feed.xml", "newsletter": "https://kevquirk.com/subscribe" },
|
||||||
|
{ "name": "Łukasz Wójcik", "url": "https://lukaszwojcik.net", "feed": "https://blog.lukaszwojcik.net/full.xml" },
|
||||||
|
{ "name": "Matt Birchler", "url": "https://birchtree.me", "feed": "https://birchtree.me/rss/" },
|
||||||
|
{ "name": "Mike Haynes", "url": "https://crashthearcade.com", "feed": "https://crashthearcade.com/feed/rss" },
|
||||||
|
{ "name": "Nick Heer", "url": "https://pxlnv.com", "feed": "https://feedpress.me/pxlnv", "json": "https://pxlnv.com/feed/json" },
|
||||||
|
{ "name": "Paris Marx", "url": "https://disconnect.blog", "feed": "https://disconnect.blog/rss/", "newsletter": "https://disconnect.blog/#/portal/signup" },
|
||||||
|
{ "name": "Paul Anthony Webb", "url": "https://webb.page" },
|
||||||
|
{ "name": "Raymond Camden", "url": "https://raymondcamden.com", "feed": "https://www.raymondcamden.com/feed.xml", "newsletter": "https://www.raymondcamden.com/subscribe/" },
|
||||||
|
{ "name": "Robb Knight", "url": "https://rknight.me", "feed": "https://rknight.me/subscribe/posts/rss.xml", "json": "https://rknight.me/subscribe/posts/feed.json" },
|
||||||
|
{ "name": "Robin Rendle", "url": "https://robinrendle.com", "feed": "https://robinrendle.com/feed.xml", "newsletter": "https://robinrendle.com/the-cascade" },
|
||||||
|
{ "name": "Ryan Broderick", "url": "https://www.garbageday.email", "feed": "https://rss.beehiiv.com/feeds/99VTTjt0N1.xml", "newsletter": "https://www.garbageday.email/subscribe" },
|
||||||
|
{ "name": "Sara Joy", "url": "https://sarajoy.dev", "feed": "https://sarajoy.dev/rss.xml" },
|
||||||
|
{ "name": "Sia Karamalegos", "url": "https://sia.codes", "feed": "https://sia.codes/feed/feed.xml", "newsletter": "https://sia.codes#inform" },
|
||||||
|
{ "name": "Sophie Koonin", "url": "https://localghost.dev", "feed": "https://localghost.dev/rss" },
|
||||||
|
{ "name": "Stephanie Eckles", "url": "https://thinkdobecreate.com", "feed": "https://thinkdobecreate.com/feed" },
|
||||||
|
{ "name": "Zach Leatherman", "url": "https://www.zachleat.com", "feed": "https://www.zachleat.com/web/feed/" }
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -1,3 +0,0 @@
|
||||||
export default async function () {
|
|
||||||
return process.env.NODE_ENV
|
|
||||||
}
|
|
|
@ -1,5 +1,3 @@
|
||||||
import artistCapitalizationPatches from '../json/artist-capitalization-patches.js';
|
|
||||||
|
|
||||||
export const artistCapitalization = (artist) => artistCapitalizationPatches[artist?.toLowerCase()] || artist
|
export const artistCapitalization = (artist) => artistCapitalizationPatches[artist?.toLowerCase()] || artist
|
||||||
|
|
||||||
const sanitizeMediaString = (string) => string.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '')
|
const sanitizeMediaString = (string) => string.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '')
|
||||||
|
@ -18,7 +16,7 @@ export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||||
const artistKey = artistSanitizedKey(track['artist'])
|
const artistKey = artistSanitizedKey(track['artist'])
|
||||||
|
|
||||||
tracksData[track['track']] = {
|
tracksData[track['track']] = {
|
||||||
artist: artistCapitalization(track['artist']),
|
artist: track['artist'],
|
||||||
title: track['track'],
|
title: track['track'],
|
||||||
plays: 1,
|
plays: 1,
|
||||||
type: 'track',
|
type: 'track',
|
||||||
|
@ -31,11 +29,11 @@ export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||||
tracksData[track['track']]['plays']++
|
tracksData[track['track']]['plays']++
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!artistsData[artistCapitalization(track['artist'])]) {
|
if (!artistsData[track['artist']]) {
|
||||||
const artistKey = artistSanitizedKey(track['artist'])
|
const artistKey = artistSanitizedKey(track['artist'])
|
||||||
|
|
||||||
artistsData[artistCapitalization(track['artist'])] = {
|
artistsData[track['artist']] = {
|
||||||
title: artistCapitalization(track['artist']),
|
title: track['artist'],
|
||||||
plays: 1,
|
plays: 1,
|
||||||
mbid: artists[artistKey]?.['mbid'] || '',
|
mbid: artists[artistKey]?.['mbid'] || '',
|
||||||
url: (artists[artistKey]?.['mbid'] && artists[artistKey]?.['mbid'] !== '') ? `http://musicbrainz.org/artist/${artists[artistKey]?.['mbid']}` : `https://musicbrainz.org/search?query=${track['artist'].replace(
|
url: (artists[artistKey]?.['mbid'] && artists[artistKey]?.['mbid'] !== '') ? `http://musicbrainz.org/artist/${artists[artistKey]?.['mbid']}` : `https://musicbrainz.org/search?query=${track['artist'].replace(
|
||||||
|
@ -46,18 +44,18 @@ export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||||
type: 'artist'
|
type: 'artist'
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
artistsData[artistCapitalization(track['artist'])]['plays']++
|
artistsData[track['artist']]['plays']++
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!albumsData[track['album']]) {
|
if (!albumsData[track['album']]) {
|
||||||
const albumKey = albumSanitizedKey(artistCapitalization(track['artist']), track['album'])
|
const albumKey = albumSanitizedKey(track['artist'], track['album'])
|
||||||
|
|
||||||
albumsData[track['album']] = {
|
albumsData[track['album']] = {
|
||||||
title: track['album'],
|
title: track['album'],
|
||||||
artist: artistCapitalization(track['artist']),
|
artist: track['artist'],
|
||||||
plays: 1,
|
plays: 1,
|
||||||
mbid: albums[albumKey]?.['mbid'] || '',
|
mbid: albums[albumKey]?.['mbid'] || '',
|
||||||
url: (albums[albumKey]?.['mbid'] && albums[albumSanitizedKey(artistCapitalization(track['artist']), track['artist'], track['album'])]?.['mbid'] !== '') ? `https://musicbrainz.org/release/${albums[albumKey]?.['mbid']}` : `https://musicbrainz.org/taglookup/index?tag-lookup.artist=${track['artist'].replace(/\s+/g, '+')}&tag-lookup.release=${track['album'].replace(/\s+/g, '+')}`,
|
url: (albums[albumKey]?.['mbid'] && albums[albumSanitizedKey(track['artist'], track['artist'], track['album'])]?.['mbid'] !== '') ? `https://musicbrainz.org/release/${albums[albumKey]?.['mbid']}` : `https://musicbrainz.org/taglookup/index?tag-lookup.artist=${track['artist'].replace(/\s+/g, '+')}&tag-lookup.release=${track['album'].replace(/\s+/g, '+')}`,
|
||||||
image: albums[albumKey]?.['image'] || `https://coryd.dev/media/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
image: albums[albumKey]?.['image'] || `https://coryd.dev/media/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
||||||
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`,
|
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`,
|
||||||
type: 'album'
|
type: 'album'
|
||||||
|
@ -84,7 +82,7 @@ export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||||
|
|
||||||
export const buildTracksWithArt = (tracks, artists, albums) => {
|
export const buildTracksWithArt = (tracks, artists, albums) => {
|
||||||
tracks.forEach(track => {
|
tracks.forEach(track => {
|
||||||
track['image'] = albums[albumSanitizedKey(artistCapitalization(track['artist']), track['album'])]?.['image'] || `https://coryd.dev/media/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
track['image'] = albums[albumSanitizedKey(track['artist'], track['album'])]?.['image'] || `https://coryd.dev/media/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
||||||
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`
|
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`
|
||||||
track['url'] = (artists[artistSanitizedKey(track['artist'])]?.['mbid'] && artists[artistSanitizedKey(track['artist'])]?.['mbid'] !== '') ? `http://musicbrainz.org/artist/${artists[artistSanitizedKey(track['artist'])]?.['mbid']}` : `https://musicbrainz.org/search?query=${track['artist'].replace(
|
track['url'] = (artists[artistSanitizedKey(track['artist'])]?.['mbid'] && artists[artistSanitizedKey(track['artist'])]?.['mbid'] !== '') ? `http://musicbrainz.org/artist/${artists[artistSanitizedKey(track['artist'])]?.['mbid']}` : `https://musicbrainz.org/search?query=${track['artist'].replace(
|
||||||
/\s+/g,
|
/\s+/g,
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
export default {
|
|
||||||
civerous: 'Civerous',
|
|
||||||
aset: 'ASET'
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
export default [
|
|
||||||
{ "name": "Adam Newbold", "url": "https://notes.neatnik.net", "feed": "https://notes.neatnik.net" },
|
|
||||||
{ "name": "Adrianna Tan", "url": "https://popagandhi.com", "feed": "https://popagandhi.com/feed.xml", "newsletter": "https://buttondown.email/skinnylatte" },
|
|
||||||
{ "name": "Ashur Cabrera", "url": "https://multiline.co/mment", "feed": "https://multiline.co/mment/feed.xml" },
|
|
||||||
{ "name": "BinaryDigit", "url": "https://binarydigit.cafe", "feed": "https://binarydigit.cafe/feed.xml" },
|
|
||||||
{ "name": "Chris Burnell", "url": "https://chrisburnell.com", "feed": "https://chrisburnell.com/feed.xml" },
|
|
||||||
{ "name": "Chris Coyier", "url": "https://chriscoyier.net", "feed": "https://chriscoyier.net/feed/" },
|
|
||||||
{ "name": "Chris Ferdinandi", "url": "https://gomakethings.com", "feed": "https://gomakethings.com/feed/index.xml", "newsletter": "https://gomakethings.com" },
|
|
||||||
{ "name": "Chris McLeod", "url": "https://chrismcleod.dev", "feed": "https://chrismcleod.dev/feed.xml" },
|
|
||||||
{ "name": "Dave Rupert", "url": "https://daverupert.com", "feed": "https://daverupert.com/atom.xml" },
|
|
||||||
{ "name": "Ethan Marcotte", "url": "https://ethanmarcotte.com/wrote/", "feed": "https://ethanmarcotte.com/wrote/feed.xml" },
|
|
||||||
{ "name": "fLaMEd", "url": "https://flamedfury.com", "feed": "https://flamedfury.com/feed.xml" },
|
|
||||||
{ "name": "Jim Nielsen", "url": "https://blog.jim-nielsen.com", "feed": "https://blog.jim-nielsen.com/feed.xml", "json": "https://blog.jim-nielsen.com/feed.json" },
|
|
||||||
{ "name": "Joe Steel", "url": "https://joe-steel.com", "feed": "https://joe-steel.com/feed.xml" },
|
|
||||||
{ "name": "Joan Westenberg", "url": "https://joanwestenberg.com", "feed": "https://joanwestenberg.com/blog?format=rss", "newsletter": "https://joanwestenberg.com/subscribe" },
|
|
||||||
{ "name": "Juha-Matti Santala", "url": "https://hamatti.org", "feed": "https://hamatti.org/feed/feed.xml", "newsletter":"https://www.syntaxerror.tech" },
|
|
||||||
{ "name": "Keenan", "url": "https://gkeenan.co/avgb", "feed": "https://gkeenan.co/avglb?format=rss" },
|
|
||||||
{ "name": "Kev Quirk", "url": "https://kevq.uk", "feed": "https://kevq.uk/feed.xml", "newsletter": "https://kevquirk.com/subscribe" },
|
|
||||||
{ "name": "Łukasz Wójcik", "url": "https://lukaszwojcik.net", "feed": "https://blog.lukaszwojcik.net/full.xml" },
|
|
||||||
{ "name": "Matt Birchler", "url": "https://birchtree.me", "feed": "https://birchtree.me/rss/" },
|
|
||||||
{ "name": "Mike Haynes", "url": "https://crashthearcade.com", "feed": "https://crashthearcade.com/feed/rss" },
|
|
||||||
{ "name": "Nick Heer", "url": "https://pxlnv.com", "feed": "https://feedpress.me/pxlnv", "json": "https://pxlnv.com/feed/json" },
|
|
||||||
{ "name": "Paris Marx", "url": "https://disconnect.blog", "feed": "https://disconnect.blog/rss/", "newsletter": "https://disconnect.blog/#/portal/signup" },
|
|
||||||
{ "name": "Paul Anthony Webb", "url": "https://webb.page" },
|
|
||||||
{ "name": "Raymond Camden", "url": "https://raymondcamden.com", "feed": "https://www.raymondcamden.com/feed.xml", "newsletter": "https://www.raymondcamden.com/subscribe/" },
|
|
||||||
{ "name": "Robb Knight", "url": "https://rknight.me", "feed": "https://rknight.me/subscribe/posts/rss.xml", "json": "https://rknight.me/subscribe/posts/feed.json" },
|
|
||||||
{ "name": "Robin Rendle", "url": "https://robinrendle.com", "feed": "https://robinrendle.com/feed.xml", "newsletter": "https://robinrendle.com/the-cascade" },
|
|
||||||
{ "name": "Ryan Broderick", "url": "https://www.garbageday.email", "feed": "https://rss.beehiiv.com/feeds/99VTTjt0N1.xml", "newsletter": "https://www.garbageday.email/subscribe" },
|
|
||||||
{ "name": "Sara Joy", "url": "https://sarajoy.dev", "feed": "https://sarajoy.dev/rss.xml" },
|
|
||||||
{ "name": "Sia Karamalegos", "url": "https://sia.codes", "feed": "https://sia.codes/feed/feed.xml", "newsletter": "https://sia.codes#inform" },
|
|
||||||
{ "name": "Sophie Koonin", "url": "https://localghost.dev", "feed": "https://localghost.dev/rss" },
|
|
||||||
{ "name": "Stephanie Eckles", "url": "https://thinkdobecreate.com", "feed": "https://thinkdobecreate.com/feed" },
|
|
||||||
{ "name": "Zach Leatherman", "url": "https://www.zachleat.com", "feed": "https://www.zachleat.com/web/feed/" }
|
|
||||||
]
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"siteName": "Cory Dransfeldt",
|
|
||||||
"siteDescription": "I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading and tv and movies.",
|
|
||||||
"author": "Cory Dransfeldt",
|
|
||||||
"email": "hi@coryd.dev",
|
|
||||||
"url": "https://coryd.dev",
|
|
||||||
"themeColor": "#3b82f6",
|
|
||||||
"siteType": "Person",
|
|
||||||
"locale": "en_US",
|
|
||||||
"lang": "en",
|
|
||||||
"meta_data": {
|
|
||||||
"opengraph_default": "https://coryd.dev/.netlify/images/?url=/assets/img/default.png&w=500&h=500&fm=webp"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
export default [
|
|
||||||
'AdsBot-Google',
|
|
||||||
'Amazonbot',
|
|
||||||
'anthropic-ai',
|
|
||||||
'Applebot',
|
|
||||||
'AwarioRssBot',
|
|
||||||
'AwarioSmartBot',
|
|
||||||
'Bytespider',
|
|
||||||
'CCBot',
|
|
||||||
'ChatGPT-User',
|
|
||||||
'ClaudeBot',
|
|
||||||
'Claude-Web',
|
|
||||||
'cohere-ai',
|
|
||||||
'DataForSeoBot',
|
|
||||||
'FacebookBot',
|
|
||||||
'FriendlyCrawler',
|
|
||||||
'Google-Extended',
|
|
||||||
'GoogleOther',
|
|
||||||
'GPTBot',
|
|
||||||
'img2dataset',
|
|
||||||
'ImagesiftBot',
|
|
||||||
'magpie-crawler',
|
|
||||||
'Meltwater',
|
|
||||||
'omgili',
|
|
||||||
'omgilibot',
|
|
||||||
'peer39_crawler',
|
|
||||||
'peer39_crawler/1.0',
|
|
||||||
'PerplexityBot',
|
|
||||||
'PiplBot',
|
|
||||||
'Seekr',
|
|
||||||
'YouBot',
|
|
||||||
]
|
|
|
@ -1,8 +1,16 @@
|
||||||
import { createRequire } from 'module'
|
|
||||||
|
|
||||||
const require = createRequire(import.meta.url)
|
|
||||||
const metaData = require('./json/meta.json')
|
|
||||||
|
|
||||||
export default async function () {
|
export default async function () {
|
||||||
return metaData
|
return {
|
||||||
|
"siteName": "Cory Dransfeldt",
|
||||||
|
"siteDescription": "I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading and tv and movies.",
|
||||||
|
"author": "Cory Dransfeldt",
|
||||||
|
"email": "hi@coryd.dev",
|
||||||
|
"url": "https://coryd.dev",
|
||||||
|
"themeColor": "#3b82f6",
|
||||||
|
"siteType": "Person",
|
||||||
|
"locale": "en_US",
|
||||||
|
"lang": "en",
|
||||||
|
"meta_data": {
|
||||||
|
"opengraph_default": "https://coryd.dev/.netlify/images/?url=/assets/img/default.png&w=500&h=500&fm=webp"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,34 @@
|
||||||
import robots from './json/robots.js'
|
|
||||||
|
|
||||||
export default async function () {
|
export default async function () {
|
||||||
return robots
|
return [
|
||||||
|
'AdsBot-Google',
|
||||||
|
'Amazonbot',
|
||||||
|
'anthropic-ai',
|
||||||
|
'Applebot',
|
||||||
|
'AwarioRssBot',
|
||||||
|
'AwarioSmartBot',
|
||||||
|
'Bytespider',
|
||||||
|
'CCBot',
|
||||||
|
'ChatGPT-User',
|
||||||
|
'ClaudeBot',
|
||||||
|
'Claude-Web',
|
||||||
|
'cohere-ai',
|
||||||
|
'DataForSeoBot',
|
||||||
|
'FacebookBot',
|
||||||
|
'FriendlyCrawler',
|
||||||
|
'Google-Extended',
|
||||||
|
'GoogleOther',
|
||||||
|
'GPTBot',
|
||||||
|
'img2dataset',
|
||||||
|
'ImagesiftBot',
|
||||||
|
'magpie-crawler',
|
||||||
|
'Meltwater',
|
||||||
|
'omgili',
|
||||||
|
'omgilibot',
|
||||||
|
'peer39_crawler',
|
||||||
|
'peer39_crawler/1.0',
|
||||||
|
'PerplexityBot',
|
||||||
|
'PiplBot',
|
||||||
|
'Seekr',
|
||||||
|
'YouBot',
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue