Skip to content

Commit

Permalink
refactor: update @nestjs/common and @nestjs/core imports to reference…
Browse files Browse the repository at this point in the history
… top level index.ts
  • Loading branch information
caucik committed Nov 16, 2021
1 parent 97eba7d commit 389ed52
Show file tree
Hide file tree
Showing 4 changed files with 14,930 additions and 25 deletions.
3 changes: 1 addition & 2 deletions lib/bull.explorer.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { Injectable, Logger, OnModuleInit } from '@nestjs/common';
import { createContextId, DiscoveryService, ModuleRef } from '@nestjs/core';
import { createContextId, DiscoveryService, MetadataScanner, ModuleRef } from '@nestjs/core';
import { Injector } from '@nestjs/core/injector/injector';
import { InstanceWrapper } from '@nestjs/core/injector/instance-wrapper';
import { Module } from '@nestjs/core/injector/module';
import { MetadataScanner } from '@nestjs/core/metadata-scanner';
import { Job, ProcessCallbackFunction, Queue } from 'bull';
import { BullMetadataAccessor } from './bull-metadata.accessor';
import { NO_QUEUE_FOUND } from './bull.messages';
Expand Down
2 changes: 1 addition & 1 deletion lib/interfaces/bull-module-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
FactoryProvider,
ModuleMetadata,
Type,
} from '@nestjs/common/interfaces';
} from '@nestjs/common';
import * as Bull from 'bull';
import { BullQueueProcessor } from '../bull.types';

Expand Down
2 changes: 1 addition & 1 deletion lib/interfaces/shared-bull-config.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
FactoryProvider,
ModuleMetadata,
Type,
} from '@nestjs/common/interfaces';
} from '@nestjs/common';
import * as Bull from 'bull';

export interface SharedBullConfigurationFactory {
Expand Down
Loading

0 comments on commit 389ed52

Please sign in to comment.