From 6c0b81cf8a0657b934451f9ba418c4949d8ecf19 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Sun, 21 Feb 2021 14:48:19 +0100 Subject: [PATCH] Renamed scripts --- src/scripts/{latest-fetch.ts => fetch-latest.ts} | 0 src/scripts/{platform-data.ts => fetch-platform-data.ts} | 0 src/scripts/{post-parser.ts => post-parse.ts} | 0 src/scripts/{scraper.ts => scrape-thread.ts} | 2 +- src/scripts/{user-scraper.ts => scrape-user.ts} | 0 src/scripts/{searcher.ts => search.ts} | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename src/scripts/{latest-fetch.ts => fetch-latest.ts} (100%) rename src/scripts/{platform-data.ts => fetch-platform-data.ts} (100%) rename src/scripts/{post-parser.ts => post-parse.ts} (100%) rename src/scripts/{scraper.ts => scrape-thread.ts} (99%) rename src/scripts/{user-scraper.ts => scrape-user.ts} (100%) rename src/scripts/{searcher.ts => search.ts} (100%) diff --git a/src/scripts/latest-fetch.ts b/src/scripts/fetch-latest.ts similarity index 100% rename from src/scripts/latest-fetch.ts rename to src/scripts/fetch-latest.ts diff --git a/src/scripts/platform-data.ts b/src/scripts/fetch-platform-data.ts similarity index 100% rename from src/scripts/platform-data.ts rename to src/scripts/fetch-platform-data.ts diff --git a/src/scripts/post-parser.ts b/src/scripts/post-parse.ts similarity index 100% rename from src/scripts/post-parser.ts rename to src/scripts/post-parse.ts diff --git a/src/scripts/scraper.ts b/src/scripts/scrape-thread.ts similarity index 99% rename from src/scripts/scraper.ts rename to src/scripts/scrape-thread.ts index 313fe24..8ffc5bd 100644 --- a/src/scripts/scraper.ts +++ b/src/scripts/scrape-thread.ts @@ -11,7 +11,7 @@ import { getJSONLD, TJsonLD } from "./json-ld.js"; import { selectors as f95Selector } from "./constants/css-selector.js"; import HandiWork from "./classes/handiwork/handiwork.js"; import { TRating, IBasic, TAuthor, TExternalPlatform, TEngine, TStatus, TCategory } from "./interfaces.js"; -import { ILink, IPostElement, parseCheerioMainPost } from "./post-parser.js"; +import { ILink, IPostElement, parseCheerioMainPost } from "./post-parse.js"; //#region Public methods /** diff --git a/src/scripts/user-scraper.ts b/src/scripts/scrape-user.ts similarity index 100% rename from src/scripts/user-scraper.ts rename to src/scripts/scrape-user.ts diff --git a/src/scripts/searcher.ts b/src/scripts/search.ts similarity index 100% rename from src/scripts/searcher.ts rename to src/scripts/search.ts