Skip to content

Commit

Permalink
[FIX] npm/Installer: Do not wrap promise provided by rimraf v4
Browse files Browse the repository at this point in the history
This was overlooked during the dependency upgrade in #550
  • Loading branch information
RandomByte committed Jan 25, 2023
1 parent 0ff47e8 commit 5974f79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ui5Framework/npm/Installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import path from "node:path";
import fs from "graceful-fs";
import {promisify} from "node:util";
import Registry from "./Registry.js";
import _rimraf from "rimraf";
const rimraf = promisify(_rimraf);
import rimraf from "rimraf";
const stat = promisify(fs.stat);
const readFile = promisify(fs.readFile);
const rename = promisify(fs.rename);
Expand Down

0 comments on commit 5974f79

Please sign in to comment.