Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/25c868e262e7e91ccb4d461dc0172c4a4e67052b8311a3d637bee8c2a96c44e2d04fbd5acd7294187daa18f87d5d65ffd74380a5ea0b6052868ae717d46e9a
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

27 lines
411 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: string): Promise<void> {
await fs.promises.rm(path, rmOptions);
}
/**
* @internal
*/
export function rmSync(path: string): void {
fs.rmSync(path, rmOptions);
}