swc/bundler/tests/.cache/deno/3b373f028b882501b8c6b5a2e6c2bd5283c8d47e.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

66 lines
1.8 KiB
TypeScript

// Loaded from https://deno.land/std@0.77.0/fs/empty_dir.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { join } from "../path/mod.ts";
/**
* Ensures that a directory is empty.
* Deletes directory contents if the directory is not empty.
* If the directory does not exist, it is created.
* The directory itself is not deleted.
* Requires the `--allow-read` and `--allow-write` flag.
*/
export async function emptyDir(dir: string): Promise<void> {
try {
const items = [];
for await (const dirEntry of Deno.readDir(dir)) {
items.push(dirEntry);
}
while (items.length) {
const item = items.shift();
if (item && item.name) {
const filepath = join(dir, item.name);
await Deno.remove(filepath, { recursive: true });
}
}
} catch (err) {
if (!(err instanceof Deno.errors.NotFound)) {
throw err;
}
// if not exist. then create it
await Deno.mkdir(dir, { recursive: true });
}
}
/**
* Ensures that a directory is empty.
* Deletes directory contents if the directory is not empty.
* If the directory does not exist, it is created.
* The directory itself is not deleted.
* Requires the `--allow-read` and `--allow-write` flag.
*/
export function emptyDirSync(dir: string): void {
try {
const items = [...Deno.readDirSync(dir)];
// If the directory exists, remove all entries inside it.
while (items.length) {
const item = items.shift();
if (item && item.name) {
const filepath = join(dir, item.name);
Deno.removeSync(filepath, { recursive: true });
}
}
} catch (err) {
if (!(err instanceof Deno.errors.NotFound)) {
throw err;
}
// if not exist. then create it
Deno.mkdirSync(dir, { recursive: true });
return;
}
}