chore(deps): update nest monorepo

This commit is contained in:
Renovate Bot 2021-08-12 14:02:36 +00:00 committed by Julian Tölle
parent a3c4d74763
commit a3c6da2749
9 changed files with 1261 additions and 986 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";