Skip to content

Commit

Permalink
ci(): fix package lock
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Dec 13, 2019
1 parent a2be769 commit cd1779f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/schedulers.orchestrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
OnApplicationBootstrap,
OnApplicationShutdown,
} from '@nestjs/common';
import { CronCommand, CronJob } from 'cron';
import { CronJob } from 'cron';
import uuid from 'uuid/v4';
import { CronOptions } from './decorators/cron.decorator';
import { SchedulersRegistry } from './schedulers.registry';
Expand Down Expand Up @@ -69,7 +69,7 @@ export class SchedulersOrchestrator
const { options, target } = this.cronJobs[key];
const cronJob = new CronJob(
options.cronTime,
target as CronCommand,
target as any,
undefined,
false,
options.timeZone,
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cd1779f

Please sign in to comment.