mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
chore(deps): update nest monorepo
This commit is contained in:
parent
a3c4d74763
commit
a3c6da2749
9 changed files with 1261 additions and 986 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { Injectable, Scope, Logger as NestLogger } from "@nestjs/common";
|
||||
import { Injectable, Scope, ConsoleLogger } from "@nestjs/common";
|
||||
|
||||
@Injectable({ scope: Scope.TRANSIENT })
|
||||
export class Logger extends NestLogger {}
|
||||
export class Logger extends ConsoleLogger {}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpModule, Module } from "@nestjs/common";
|
||||
import { HttpModule } from "@nestjs/axios";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyApiService } from "./spotify-api.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { HttpService } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Test, TestingModule } from "@nestjs/testing";
|
||||
import { SpotifyApiService } from "./spotify-api.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpService, Injectable } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Injectable } from "@nestjs/common";
|
||||
import { SpotifyConnection } from "../spotify-connection.entity";
|
||||
import { AlbumObject } from "./entities/album-object";
|
||||
import { ArtistObject } from "./entities/artist-object";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpModule, Module } from "@nestjs/common";
|
||||
import { HttpModule } from "@nestjs/axios";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyAuthService } from "./spotify-auth.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpService, Injectable } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Injectable } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyConnection } from "../spotify-connection.entity";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Logger } from "@nestjs/common";
|
||||
import { Test, TestingModule } from "@nestjs/testing";
|
||||
import { ListensService } from "../../listens/listens.service";
|
||||
import { Logger } from "../../logger/logger.service";
|
||||
import { MusicLibraryService } from "../../music-library/music-library.service";
|
||||
import { UsersService } from "../../users/users.service";
|
||||
import { SpotifyApiService } from "./spotify-api/spotify-api.service";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue