Skip to content

Commit

Permalink
fix: Fix import from glob package (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmpak authored Nov 23, 2023
1 parent 385f56c commit b40b759
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/cli/tasks/extract.task.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cyan, green, bold, dim, red } from 'colorette';
import pkg from 'glob';
import { sync } from 'glob';
import * as fs from 'fs';
import * as path from 'path';

Expand All @@ -9,8 +9,6 @@ import { ParserInterface } from '../../parsers/parser.interface.js';
import { PostProcessorInterface } from '../../post-processors/post-processor.interface.js';
import { CompilerInterface } from '../../compilers/compiler.interface.js';

const { sync } = pkg;

export interface ExtractTaskOptionsInterface {
replace?: boolean;
}
Expand Down

0 comments on commit b40b759

Please sign in to comment.