MCPcopy
hub / github.com/vercel/next-forge / deleteInternalContent

Function deleteInternalContent

scripts/initialize.ts:50–58  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

48};
49
50const deleteInternalContent = async () => {
51 for (const folder of internalContentDirs) {
52 await rm(folder, { recursive: true, force: true });
53 }
54
55 for (const file of internalContentFiles) {
56 await rm(file, { force: true });
57 }
58};
59
60const installDependencies = async (packageManager: PackageManagerName) => {
61 await nypmInstallDependencies({

Callers 1

initializeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected