From 464b7abf4a37e4d0d1cf2f0bb2705c691a8b929d Mon Sep 17 00:00:00 2001 From: developomp Date: Fri, 4 Aug 2023 13:03:47 +0900 Subject: [PATCH] chore: complete 582e15d --- packages/content/src/config.ts | 1 - packages/content/src/index.ts | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/packages/content/src/config.ts b/packages/content/src/config.ts index dc93cca..8c0e666 100644 --- a/packages/content/src/config.ts +++ b/packages/content/src/config.ts @@ -6,4 +6,3 @@ 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` diff --git a/packages/content/src/index.ts b/packages/content/src/index.ts index 58eea01..3be9c08 100644 --- a/packages/content/src/index.ts +++ b/packages/content/src/index.ts @@ -8,12 +8,7 @@ import fs from "fs" -import { - mapFilePath, - markdownPath, - portfolioFilePath, - resumeFilePath, -} from "./config" +import { mapFilePath, markdownPath, portfolioFilePath } from "./config" import { fillTags, parseSeries, sortDates } from "./postProcess" import { recursiveParse } from "./recursiveParse" import { saveIndex } from "./searchIndex" @@ -74,7 +69,6 @@ async function main() { * Save results */ - fs.copyFileSync("resume/resume.pdf", resumeFilePath) fs.writeFileSync(mapFilePath, JSON.stringify(contentMap)) fs.writeFileSync( portfolioFilePath,