Skip to content

Commit

Permalink
[DEPENDENCY] Bump rimraf from 4.4.1 to 5.0.0 (#897)
Browse files Browse the repository at this point in the history
* [DEPENDENCY] Bump rimraf from 4.4.1 to 5.0.0

Bumps [rimraf](https://github.com/isaacs/rimraf) from 4.4.1 to 5.0.0.
- [Release notes](https://github.com/isaacs/rimraf/releases)
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v4.4.1...v5.0.0)

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

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

* [INTERNAL] rimraf: 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 1a2ca76 commit 7b5e442
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 17 deletions.
2 changes: 1 addition & 1 deletion lib/tasks/jsdoc/generateJsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const log = getLogger("builder:tasks:jsdoc:generateJsdoc");
import path from "node:path";
import os from "node:os";
import fs from "graceful-fs";
import rimraf from "rimraf";
import {rimraf} from "rimraf";
import {promisify} from "node:util";
const mkdtemp = promisify(fs.mkdtemp);
const mkdir = promisify(fs.mkdir);
Expand Down
139 changes: 125 additions & 14 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 @@ -128,7 +128,7 @@
"jsdoc": "^4.0.2",
"less-openui5": "^0.11.6",
"pretty-data": "^0.40.0",
"rimraf": "^4.4.1",
"rimraf": "^5.0.0",
"semver": "^7.4.0",
"terser": "^5.16.9",
"workerpool": "^6.4.0",
Expand Down
4 changes: 3 additions & 1 deletion test/lib/tasks/jsdoc/generateJsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ test.beforeEach(async (t) => {
mkdtemp: t.context.mkdtempStub,
mkdir: t.context.mkdirStub
},
"rimraf": t.context.rimrafStub,
"rimraf": {
rimraf: t.context.rimrafStub
},
"@ui5/fs/resourceFactory": {
createAdapter: t.context.createAdapterStub
},
Expand Down

0 comments on commit 7b5e442

Please sign in to comment.