Rocky_Mountain_Vending/.pnpm-store/v10/files/54/2443d36f1e5d8866f2686a3507a1024fd1ea6d8cd0b27701a146742df16bf8abb799a4147a345f722459a1c1a1f5f1843c72e3298399656ca28c27bc0dcbd1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

24 lines
No EOL
410 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'node:fs';
const rmOptions = {
force: true,
recursive: true,
maxRetries: 5,
};
/**
* @internal
*/
export async function rm(path) {
await fs.promises.rm(path, rmOptions);
}
/**
* @internal
*/
export function rmSync(path) {
fs.rmSync(path, rmOptions);
}
//# sourceMappingURL=fs.js.map