Build Basics / Standard term
Build command
A build command is the instruction you run to package your project's source files into the optimized files a host can serve, turning the version you edit into the version visitors load.
A build command is the instruction you run to package your project's source files into the optimized files a host can serve. The code you write is organized for people to read and edit; the build step rewrites it into a smaller, faster bundle the browser can load quickly. Say you built a to-do app and its source is spread across many readable files. You tell your hosting service to run the build command, and it folds those files into a compact set of optimized assets, reporting any error that stops the package from completing. The version you edit stays untouched; the version your visitors load is the built output.
Builder example
Your host runs the build command every time you deploy, so a project that works on your own computer can still fail at this step. A missing dependency, a typo, or a setting your machine had but the host does not will stop the build and leave the live version unchanged. Reading the build output tells you whether the problem is in your code or in the host's setup, which is where you point the AI when you ask it to fix the failure.
Common confusion: Running the build command is the packaging step; deployment is the separate step that copies the built output onto a host and makes it reachable by link. A build can succeed and still never go live if the deploy step is skipped, and a deploy can fail even when the build itself passed.