From e8a6924d3682bc4e2b8b04f7d95f19220f31c597 Mon Sep 17 00:00:00 2001 From: Jisu Kim Date: Sat, 26 Feb 2022 03:20:27 +0900 Subject: [PATCH] rename --- {doc => docs}/NanumGothic.ttf | Bin {doc => docs}/index.html | 0 {doc => docs}/voca.json | 0 {doc => docs}/website.bundle.js | 0 scripts.yml | 2 +- src/crawl.ts | 2 +- 6 files changed, 2 insertions(+), 2 deletions(-) rename {doc => docs}/NanumGothic.ttf (100%) rename {doc => docs}/index.html (100%) rename {doc => docs}/voca.json (100%) rename {doc => docs}/website.bundle.js (100%) diff --git a/doc/NanumGothic.ttf b/docs/NanumGothic.ttf similarity index 100% rename from doc/NanumGothic.ttf rename to docs/NanumGothic.ttf diff --git a/doc/index.html b/docs/index.html similarity index 100% rename from doc/index.html rename to docs/index.html diff --git a/doc/voca.json b/docs/voca.json similarity index 100% rename from doc/voca.json rename to docs/voca.json diff --git a/doc/website.bundle.js b/docs/website.bundle.js similarity index 100% rename from doc/website.bundle.js rename to docs/website.bundle.js diff --git a/scripts.yml b/scripts.yml index 791f2bd..0df3f80 100644 --- a/scripts.yml +++ b/scripts.yml @@ -8,6 +8,6 @@ scripts: lock: lock.json config: deno.jsonc - bundle: deno bundle -c deno.jsonc src/website/mod.ts doc/website.bundle.js + bundle: deno bundle -c deno.jsonc src/website/mod.ts docs/website.bundle.js generate-lock: deno cache --lock=lock.json --lock-write src/deps.ts diff --git a/src/crawl.ts b/src/crawl.ts index fafa067..7c8e078 100644 --- a/src/crawl.ts +++ b/src/crawl.ts @@ -47,6 +47,6 @@ for (const level of levels) { } Deno.writeTextFileSync( - path.join(__dirname, "../doc/", "voca.json"), + path.join(__dirname, "../docs/", "voca.json"), JSON.stringify(result), );