Skip to content

Commit

Permalink
fix: update import statement for mkdirp
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-pribilinskiy committed Oct 14, 2024
1 parent d7b8d29 commit 8007ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'node:fs';
import path from 'node:path';

import mkdirp from 'mkdirp';
import { mkdirp }from 'mkdirp';

import { PREFIX_NOT_FOR_IMPORT } from '../constants';
import type { CommonLogger, FederationConfig } from '../models';
Expand Down
2 changes: 1 addition & 1 deletion src/downloadTypes/helpers/downloadRemoteEntryTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fs from 'node:fs';
import path from 'node:path';

import download from 'download';
import mkdirp from 'mkdirp';
import { mkdirp } from 'mkdirp';

import { getLogger } from '../../helpers';

Expand Down

0 comments on commit 8007ad0

Please sign in to comment.