Rocky_Mountain_Vending/.pnpm-store/v10/files/15/4fb1f147482fef42bfd5a287822aec6ddb6d4d2973a826efad4bbde7f07316e5b527b3ce6e8f2629ef167ace598dd19fc9a1ac1c7751c6787b175a3474c559
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

19 lines
No EOL
559 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "writeBuildId", {
enumerable: true,
get: function() {
return writeBuildId;
}
});
const _fs = require("fs");
const _path = require("path");
const _constants = require("../shared/lib/constants");
async function writeBuildId(distDir, buildId) {
const buildIdPath = (0, _path.join)(distDir, _constants.BUILD_ID_FILE);
await _fs.promises.writeFile(buildIdPath, buildId, 'utf8');
}
//# sourceMappingURL=write-build-id.js.map