Skip to content

Commit

Permalink
[DEPENDENCY] Bump minimatch from 8.0.4 to 9.0.0 (#497)
Browse files Browse the repository at this point in the history
* [DEPENDENCY] Bump minimatch from 8.0.4 to 9.0.0

Bumps [minimatch](https://github.com/isaacs/minimatch) from 8.0.4 to 9.0.0.
- [Release notes](https://github.com/isaacs/minimatch/releases)
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v8.0.4...v9.0.0)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* [INTERNAL] minimatch: Migrate to named import

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Florian Vogt <florian.vogt@sap.com>
  • Loading branch information
dependabot[bot] and flovogt committed Apr 17, 2023
1 parent 86902eb commit 56d4542
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 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
23 changes: 19 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"globby": "^13.1.4",
"graceful-fs": "^4.2.11",
"micromatch": "^4.0.5",
"minimatch": "^8.0.4",
"minimatch": "^9.0.0",
"pretty-hrtime": "^1.0.3",
"random-int": "^3.0.0"
},
Expand Down

0 comments on commit 56d4542

Please sign in to comment.