feat: add resume

This commit is contained in:
Kim, Jimin 2023-07-10 19:57:07 +09:00
parent 37b8f3fec4
commit 5d8a649a01
11 changed files with 50 additions and 3 deletions

View file

@ -32,8 +32,9 @@ developomp-site is a monorepo managed by [turborepo](https://turbo.build/repo)
and pnpm workspace.
- https://developomp.com - about me, built with **SvelteKit**
- https://blog.developomp.com - Blogging site, built with **React + CRA**
- https://blog.developomp.com - Blogging site, built with **React + Vite**
- https://portfolio.developomp.com - Portfolio, built with **React + Vite**
- https://resume.developomp.com - Portfolio, simply redirects to https://developomp.com/resume
The following services/technologies are used by the project:

Binary file not shown.

Binary file not shown.

View file

@ -6,3 +6,4 @@ export const iconsDirectoryPath = `${outPath}/icons`
export const mapFilePath = `${outPath}/map.json`
export const portfolioFilePath = `${outPath}/portfolio.json`
export const searchIndexFilePath = `${outPath}/search.json`
export const resumeFilePath = `${outPath}/resume.pdf`

View file

@ -8,7 +8,12 @@
import fs from "fs"
import { mapFilePath, markdownPath, portfolioFilePath } from "./config"
import {
mapFilePath,
markdownPath,
portfolioFilePath,
resumeFilePath,
} from "./config"
import {
fillTags,
generatePortfolioSVGs,
@ -75,6 +80,7 @@ async function main() {
* Save results
*/
fs.copyFileSync("resume/resume.pdf", resumeFilePath)
fs.writeFileSync(mapFilePath, JSON.stringify(contentMap))
fs.writeFileSync(
portfolioFilePath,