• 0 Posts
  • 39 Comments
Joined 11 months ago
cake
Cake day: August 5th, 2023

help-circle













  • al4s@feddit.detoAsklemmy@lemmy.mlInsomnia
    link
    fedilink
    arrow-up
    1
    ·
    4 months ago

    If you have vitamin deficiencies, fortified food can also cause you to run at 120%. In some countries (e.g. US) Noodles and flour are fortified with B-vitamins. Maybe that’s what you’re experiencing? It happened to me a few times.







  • I think it makes more sense if you think about backend applications: If you write a Webserver with ExpressJS in typescript, you need typescript only to compile it (dev dependency) but once compiled, you only need ExpressJS in your node_modules for the app to be able to run (“regular” dependency).

    Frontend development is a bit strange in that respect, because often everything gets bundled into your dist/ directory, so technically there are no runtime dependencies? In that case it’s more of a hint to let you know “this goes into the bundle” vs. “this is part of the compiler toolchain”