Skip to content

Commit 7ec5ea1

Browse files
Fix live 500: named plates export, no barrel. Drop sideEffects false.
1 parent bf956a3 commit 7ec5ea1

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"simulation",
2929
"collector"
3030
],
31-
"sideEffects": false,
3231
"type": "module",
3332
"overrides": {
3433
"nf3": "0.3.17"

src/components/crest.tsx

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
import type { ReactNode } from "react";
22
import { marksFor, type CrestOp } from "@/lib/crest-marks";
33
import { clubAbbr as clubCode, type Era } from "@/lib/nba";
4+
import {
5+
initials,
6+
plateFor,
7+
plateForPlayer,
8+
plateCrop,
9+
cardSerial,
10+
nameParts,
11+
PLATES,
12+
} from "@/lib/plates";
413
import { cn } from "@/lib/utils";
514

6-
export { initials, plateFor, plateForPlayer, plateCrop, cardSerial, nameParts, PLATES } from "@/lib/plates";
15+
export {
16+
initials,
17+
plateFor,
18+
plateForPlayer,
19+
plateCrop,
20+
cardSerial,
21+
nameParts,
22+
PLATES,
23+
};
724

825
function Mark({ children, className }: { children: ReactNode; className?: string }) {
926
return (

0 commit comments

Comments
 (0)