Build || !Build

· webdev, minimalism

There was a time when no-build meant exactly what it said. Drop an .html file. Add some .js. Ship it. Zero configuration, zero bundlers, zero waiting for Webpack to complete its rituals.

Why it worked:
Instant feedback: change, refresh, done. Very Light as well. Raw files served from a CDN cache, close to the user, with nothing between the file and the browser that could go wrong.

What we did to it:
Frameworks began affixing no-build labels to projects that loaded fifty dependencies on the client before rendering a single element. A semicolon change began triggering cache invalidation, rebuild pipelines, and CI processes that had no business knowing about semicolons. The instant deployment became a two-minute affair because the CDN needed to rehydrate a configuration file written by someone who had forgotten that configuration files are not the product.

Complexity is debt. You either chose it deliberately, or it accumulated while you were looking at configuration files.