Skip to content

Commit

Permalink
[INTERNAL] minimatch: Migrate to named import
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Apr 17, 2023
1 parent 55ced6a commit 684b0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/adapters/AbstractAdapter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from "node:path/posix";
import {getLogger} from "@ui5/logger";
const log = getLogger("resources:adapters:AbstractAdapter");
import minimatch from "minimatch";
import {minimatch} from "minimatch";
import micromatch from "micromatch";
import AbstractReaderWriter from "../AbstractReaderWriter.js";
import Resource from "../Resource.js";
Expand Down
2 changes: 1 addition & 1 deletion lib/resourceFactory.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from "node:path";
import minimatch from "minimatch";
import {minimatch} from "minimatch";
import DuplexCollection from "./DuplexCollection.js";
import FsAdapter from "./adapters/FileSystem.js";
import MemAdapter from "./adapters/Memory.js";
Expand Down

0 comments on commit 684b0fe

Please sign in to comment.