From b149d7acc0ecee14ec026ed2cb140742e23759ce Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <5748627+revolter@users.noreply.github.com> Date: Sat, 24 Feb 2024 03:11:00 +0200 Subject: [PATCH] Project: Grouped recipe helpers in a new directory --- src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts | 6 +++--- src/recipes/{ => helpers}/RecipeListUpdater.ts | 0 src/recipes/{ => helpers}/RecipeMarkdownListExtractor.ts | 0 src/recipes/{ => helpers}/RecipeMarkdownListUpdater.ts | 0 src/recipes/{ => helpers}/RecipeMarker.ts | 0 src/recipes/iq_puzzles/IQPuzzlesRecipe.ts | 6 +++--- 6 files changed, 6 insertions(+), 6 deletions(-) rename src/recipes/{ => helpers}/RecipeListUpdater.ts (100%) rename src/recipes/{ => helpers}/RecipeMarkdownListExtractor.ts (100%) rename src/recipes/{ => helpers}/RecipeMarkdownListUpdater.ts (100%) rename src/recipes/{ => helpers}/RecipeMarker.ts (100%) diff --git a/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts b/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts index ffc0256..0cea588 100644 --- a/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts +++ b/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts @@ -4,9 +4,9 @@ import { RegexFactory } from 'src/regex/RegexFactory'; import { WebsiteScraper } from 'src/scraping/WebsiteScraper'; import { TrackablesUpdater } from 'src/tracking/TrackablesUpdater'; import { Recipe } from '../Recipe'; -import { RecipeListUpdater } from '../RecipeListUpdater'; -import { RecipeMarkdownListUpdater } from '../RecipeMarkdownListUpdater'; -import { RecipeMarker } from '../RecipeMarker'; +import { RecipeListUpdater } from '../helpers/RecipeListUpdater'; +import { RecipeMarkdownListUpdater } from '../helpers/RecipeMarkdownListUpdater'; +import { RecipeMarker } from '../helpers/RecipeMarker'; import { HanayamaHuzzle } from './HanayamaHuzzle'; export class HanayamaHuzzlesRecipe implements Recipe { diff --git a/src/recipes/RecipeListUpdater.ts b/src/recipes/helpers/RecipeListUpdater.ts similarity index 100% rename from src/recipes/RecipeListUpdater.ts rename to src/recipes/helpers/RecipeListUpdater.ts diff --git a/src/recipes/RecipeMarkdownListExtractor.ts b/src/recipes/helpers/RecipeMarkdownListExtractor.ts similarity index 100% rename from src/recipes/RecipeMarkdownListExtractor.ts rename to src/recipes/helpers/RecipeMarkdownListExtractor.ts diff --git a/src/recipes/RecipeMarkdownListUpdater.ts b/src/recipes/helpers/RecipeMarkdownListUpdater.ts similarity index 100% rename from src/recipes/RecipeMarkdownListUpdater.ts rename to src/recipes/helpers/RecipeMarkdownListUpdater.ts diff --git a/src/recipes/RecipeMarker.ts b/src/recipes/helpers/RecipeMarker.ts similarity index 100% rename from src/recipes/RecipeMarker.ts rename to src/recipes/helpers/RecipeMarker.ts diff --git a/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts b/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts index ef170f1..d5f1704 100644 --- a/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts +++ b/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts @@ -4,9 +4,9 @@ import { RegexFactory } from 'src/regex/RegexFactory'; import { WebsiteScraper } from 'src/scraping/WebsiteScraper'; import { TrackablesUpdater } from 'src/tracking/TrackablesUpdater'; import { Recipe } from '../Recipe'; -import { RecipeListUpdater } from '../RecipeListUpdater'; -import { RecipeMarkdownListUpdater } from '../RecipeMarkdownListUpdater'; -import { RecipeMarker } from '../RecipeMarker'; +import { RecipeListUpdater } from '../helpers/RecipeListUpdater'; +import { RecipeMarkdownListUpdater } from '../helpers/RecipeMarkdownListUpdater'; +import { RecipeMarker } from '../helpers/RecipeMarker'; import { IQPuzzle } from './IQPuzzle'; export class IQPuzzlesRecipe implements Recipe {