Skip to content

Commit

Permalink
chore(deps): remove rimraf (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danil42Russia authored Jan 20, 2025
1 parent 2c99b64 commit 97fbcbb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"release-it": "^18.1.1",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~5.6.2"
Expand Down
3 changes: 1 addition & 2 deletions src/vfs/createNodeFileSystem.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import path from "path";
import fs from "fs";
import rimraf from "rimraf";
import { createNodeFileSystem } from "./createNodeFileSystem";

describe("createNodeFileSystem", () => {
Expand Down Expand Up @@ -44,7 +43,7 @@ describe("createNodeFileSystem", () => {
);
expect(fs.readFileSync(realPath2, "utf8")).toBe("Hello world");
} finally {
rimraf.sync(realPathDir2);
fs.rmSync(realPathDir2, { recursive: true, force: true });
}
});
});
9 changes: 1 addition & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3357,7 +3357,7 @@ glob@^8.1.0:
minimatch "^5.0.1"
once "^1.3.0"

glob@^9.2.0, glob@^9.3.2:
glob@^9.3.2:
version "9.3.5"
resolved "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz"
integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==
Expand Down Expand Up @@ -5297,13 +5297,6 @@ rimraf@^3.0.2:
dependencies:
glob "^7.1.3"

rimraf@^4.1.2:
version "4.4.1"
resolved "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz"
integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==
dependencies:
glob "^9.2.0"

run-applescript@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz#e5a553c2bffd620e169d276c1cd8f1b64778fbeb"
Expand Down

0 comments on commit 97fbcbb

Please sign in to comment.