From 3e3bbf53db8573b5728fc3ad42f61320c61b4920 Mon Sep 17 00:00:00 2001 From: surfbryce <80861823+surfbryce@users.noreply.github.com> Date: Fri, 16 Jun 2023 23:47:30 -0700 Subject: [PATCH] Updated relative-paths to Packages --- src/Services/AutoUpdater.ts | 2 +- src/Services/CoverArt.ts | 2 +- src/Services/Session.ts | 6 +++--- src/Services/Songs.ts | 4 ++-- src/app.tsx | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Services/AutoUpdater.ts b/src/Services/AutoUpdater.ts index 2a82bd1..8aa70f4 100644 --- a/src/Services/AutoUpdater.ts +++ b/src/Services/AutoUpdater.ts @@ -1,5 +1,5 @@ // Packages -import {Timeout} from '../../../Packages/Scheduler' +import {Timeout} from '../../../../Packages/Scheduler' // Project Details import {version as PackageVersion} from '../../package.json' diff --git a/src/Services/CoverArt.ts b/src/Services/CoverArt.ts index ec5bdf3..c0734e6 100644 --- a/src/Services/CoverArt.ts +++ b/src/Services/CoverArt.ts @@ -1,5 +1,5 @@ // Packages -import {Signal} from '../../../Packages/Signal' +import {Signal} from '../../../../Packages/Signal' // Services import {GlobalMaid} from './Session' diff --git a/src/Services/Session.ts b/src/Services/Session.ts index 772e70f..e20d523 100644 --- a/src/Services/Session.ts +++ b/src/Services/Session.ts @@ -1,7 +1,7 @@ // Packages -import {Maid} from '../../../Packages/Maid' -import { Signal } from '../../../Packages/Signal' -import { Timeout } from '../../../Packages/Scheduler' +import {Maid} from '../../../../Packages/Maid' +import { Signal } from '../../../../Packages/Signal' +import { Timeout } from '../../../../Packages/Scheduler' // Create our Global-Maid (this is used so we can clean-up everything prior to updating) const GlobalMaid = new Maid() diff --git a/src/Services/Songs.ts b/src/Services/Songs.ts index a944584..9ad130e 100644 --- a/src/Services/Songs.ts +++ b/src/Services/Songs.ts @@ -1,6 +1,6 @@ // Packages -import { Signal } from '../../../Packages/Signal' -import { Maid } from '../../../Packages/Maid' +import { Signal } from '../../../../Packages/Signal' +import { Maid } from '../../../../Packages/Maid' // Services import { GlobalMaid, SpotifyPlayer, SpotifyFetch } from './Session' diff --git a/src/app.tsx b/src/app.tsx index 1f9a453..932dd40 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -1,5 +1,5 @@ // Packages -import {Maid} from '../../Packages/Maid' +import {Maid} from '../../../Packages/Maid' // Initial Services import {GlobalMaid, IsSpicetifyLoaded, SpicetifyLoaded} from './Services/Session'