feat: init
This commit is contained in:
40
node_modules/@nuxt/cli/dist/fs-BNfOTIDu.mjs
generated
vendored
Normal file
40
node_modules/@nuxt/cli/dist/fs-BNfOTIDu.mjs
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { t as debug } from "./logger-B4ge7MhP.mjs";
|
||||
import { join } from "pathe";
|
||||
import { existsSync, promises } from "node:fs";
|
||||
|
||||
//#region ../nuxi/src/utils/fs.ts
|
||||
async function clearDir(path, exclude) {
|
||||
if (!exclude) await promises.rm(path, {
|
||||
recursive: true,
|
||||
force: true
|
||||
});
|
||||
else if (existsSync(path)) {
|
||||
const files = await promises.readdir(path);
|
||||
await Promise.all(files.map(async (name) => {
|
||||
if (!exclude.includes(name)) await promises.rm(join(path, name), {
|
||||
recursive: true,
|
||||
force: true
|
||||
});
|
||||
}));
|
||||
}
|
||||
await promises.mkdir(path, { recursive: true });
|
||||
}
|
||||
function clearBuildDir(path) {
|
||||
return clearDir(path, [
|
||||
"cache",
|
||||
"analyze",
|
||||
"nuxt.json"
|
||||
]);
|
||||
}
|
||||
async function rmRecursive(paths) {
|
||||
await Promise.all(paths.filter((p) => typeof p === "string").map(async (path) => {
|
||||
debug(`Removing recursive path: ${path}`);
|
||||
await promises.rm(path, {
|
||||
recursive: true,
|
||||
force: true
|
||||
}).catch(() => {});
|
||||
}));
|
||||
}
|
||||
|
||||
//#endregion
|
||||
export { clearDir as n, rmRecursive as r, clearBuildDir as t };
|
||||
Reference in New Issue
Block a user