Removed rimraf dev dependency

This commit is contained in:
Steve Gravrock
2025-06-14 08:48:43 -07:00
parent de26763868
commit bd8d23f2a7
3 changed files with 2 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
const fs = require('node:fs');
const path = require('node:path');
const os = require('node:os');
const { rimrafSync } = require('rimraf');
describe('npm package', function() {
beforeAll(function() {
@@ -43,7 +42,7 @@ describe('npm package', function() {
afterAll(function() {
fs.unlinkSync(this.tarball);
rimrafSync(this.tmpDir);
fs.rmSync(this.tmpDir, {recursive: true});
});
it('has a root path', function() {