mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
refactor: update integration imports to reference top level index.ts
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Scalar } from '@nestjs/graphql/dist/decorators/resolvers.decorators';
|
||||
import { Scalar } from '@nestjs/graphql';
|
||||
import { Kind } from 'graphql';
|
||||
|
||||
@Scalar('Date')
|
||||
|
||||
@@ -2,11 +2,11 @@ import {
|
||||
Body,
|
||||
Controller,
|
||||
HttpCode,
|
||||
Logger,
|
||||
OnModuleDestroy,
|
||||
OnModuleInit,
|
||||
Post,
|
||||
} from '@nestjs/common';
|
||||
import { Logger } from '@nestjs/common/services/logger.service';
|
||||
import { Client, ClientKafka, Transport } from '@nestjs/microservices';
|
||||
import { PartitionerArgs } from 'kafkajs';
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
@@ -2,11 +2,11 @@ import {
|
||||
Body,
|
||||
Controller,
|
||||
HttpCode,
|
||||
Logger,
|
||||
OnModuleDestroy,
|
||||
OnModuleInit,
|
||||
Post,
|
||||
} from '@nestjs/common';
|
||||
import { Logger } from '@nestjs/common/services/logger.service';
|
||||
import { Client, ClientKafka, Transport } from '@nestjs/microservices';
|
||||
import { lastValueFrom, Observable } from 'rxjs';
|
||||
import { BusinessDto } from './dtos/business.dto';
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { Controller } from '@nestjs/common';
|
||||
import { Logger } from '@nestjs/common/services/logger.service';
|
||||
import { Controller, Logger } from '@nestjs/common';
|
||||
import { EventPattern, MessagePattern } from '@nestjs/microservices';
|
||||
import { BusinessDto } from './dtos/business.dto';
|
||||
import { UserDto } from './dtos/user.dto';
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { INestApplication } from '@nestjs/common';
|
||||
import { RequestMethod } from '@nestjs/common/enums/request-method.enum';
|
||||
import { INestApplication, RequestMethod } from '@nestjs/common';
|
||||
import { Test } from '@nestjs/testing';
|
||||
import * as request from 'supertest';
|
||||
import {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { FactoryProvider } from '@nestjs/common/interfaces';
|
||||
import { FactoryProvider } from '@nestjs/common';
|
||||
|
||||
export const LOGGER_PROVIDER = 'LOGGER_PROVIDER';
|
||||
export const loggerProvider: FactoryProvider = {
|
||||
|
||||
31235
package-lock.json
generated
31235
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user