Rocky_Mountain_Vending/.pnpm-store/v10/files/97/2764386e377bc5c9df1b318c69e7bd5678531f5285b323c91118b66a17496b893ed1c37c5ccb2895c925142e9eb47352345750b81a51724bbe582a13b87105
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

29 lines
813 B
Text

import { formatDistance } from "./mk/_lib/formatDistance.js";
import { formatLong } from "./mk/_lib/formatLong.js";
import { formatRelative } from "./mk/_lib/formatRelative.js";
import { localize } from "./mk/_lib/localize.js";
import { match } from "./mk/_lib/match.js";
/**
* @category Locales
* @summary Macedonian locale.
* @language Macedonian
* @iso-639-2 mkd
* @author Petar Vlahu [@vlahupetar](https://github.com/vlahupetar)
* @author Altrim Beqiri [@altrim](https://github.com/altrim)
*/
export const mk = {
code: "mk",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default mk;