cm0002@piefed.world to Programmer Humor@programming.devEnglish · 13 days agoYou typical Node projectlemmy.mlexternal-linkmessage-square68fedilinkarrow-up1588arrow-down18 cross-posted to: programmerhumor@lemmy.ml
arrow-up1580arrow-down1external-linkYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 13 days agomessage-square68fedilink cross-posted to: programmerhumor@lemmy.ml
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up43·13 days agoIf you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren’t used.
If you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren’t used.
Ah ok gotcha