feat: move from developomp.com -> pompy.dev

This commit is contained in:
Kim, Jimin 2025-03-04 20:44:27 +09:00
parent f3fd09d34a
commit 63fdbcdb9b
Signed by: pomp
GPG key ID: 2B516173EDD492EB
47 changed files with 176 additions and 184 deletions

View file

@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["@developomp-site/eslint-config"],
extends: ["@pompydev/eslint-config"],
}

View file

@ -1 +1 @@
"@developomp-site/prettier-config"
"@pompydev/prettier-config"

View file

@ -12,7 +12,7 @@ date: 2023-09-17
## Introduction
Hi. I am `developomp`. I go by the nickname `[LP] POMP` within the community. You may recognize me as the creator of the [War Brokers Mods][wbm] (pomp's mod) and the [War Brokers Projects][wbp].
Hi. I am `pomp`. I go by the nickname `[LP] POMP` within the community. You may recognize me as the creator of the [War Brokers Mods][wbm] (pomp's mod) and the [War Brokers Projects][wbp].
<br />

View file

@ -1,5 +1,5 @@
{
"name": "@developomp-site/content",
"name": "@pompydev/content",
"version": "0.0.0",
"type": "module",
"scripts": {
@ -9,8 +9,8 @@
"i_am_sure_i_want_to_nuke_gitignored_files": "rm -rf .turbo build dist node_modules"
},
"dependencies": {
"@developomp-site/eslint-config": "workspace:*",
"@developomp-site/prettier-config": "workspace:*",
"@pompydev/eslint-config": "workspace:*",
"@pompydev/prettier-config": "workspace:*",
"@microflash/remark-callout-directives": "^4.1.0",
"@types/dompurify": "^3.0.5",
"@types/elasticlunr": "^0.9.9",

View file

@ -6,10 +6,10 @@ export function buildFeed(contentMap: ContentMap): string {
/* lets create an rss feed */
const feed = new RSS({
title: "pomp's blog",
description: "developomp's blog",
feed_url: "https://blog.developomp.com/rss.xml",
site_url: "https://blog.developomp.com",
image_url: "https://blog.developomp.com/favicon.svg",
description: "pomp's blog",
feed_url: "https://blog.pompy.dev/rss.xml",
site_url: "https://blog.pompy.dev",
image_url: "https://blog.pompy.dev/favicon.svg",
language: "en",
pubDate: "May 20, 2012 04:00:00 GMT",
})
@ -18,7 +18,7 @@ export function buildFeed(contentMap: ContentMap): string {
feed.item({
title: contentMap.posts[key].title,
description: contentMap.posts[key].title,
url: `https://blog.developomp.com${key}`,
url: `https://blog.pompy.dev${key}`,
date: contentMap.posts[key].date,
})