Skip to content

Commit

Permalink
Updated relative-paths to Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
surfbryce committed Jun 17, 2023
1 parent bfadc01 commit 3e3bbf5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Services/AutoUpdater.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Packages
import {Timeout} from '../../../Packages/Scheduler'
import {Timeout} from '../../../../Packages/Scheduler'

// Project Details
import {version as PackageVersion} from '../../package.json'
Expand Down
2 changes: 1 addition & 1 deletion src/Services/CoverArt.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Packages
import {Signal} from '../../../Packages/Signal'
import {Signal} from '../../../../Packages/Signal'

// Services
import {GlobalMaid} from './Session'
Expand Down
6 changes: 3 additions & 3 deletions src/Services/Session.ts
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
4 changes: 2 additions & 2 deletions src/Services/Songs.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Packages
import {Maid} from '../../Packages/Maid'
import {Maid} from '../../../Packages/Maid'

// Initial Services
import {GlobalMaid, IsSpicetifyLoaded, SpicetifyLoaded} from './Services/Session'
Expand Down

0 comments on commit 3e3bbf5

Please sign in to comment.