Changelog
Release history for @nordcom/commerce-next-build-notifier.
next-build-notifier
0.2.2
Patch Changes
-
efa97d3Thanks @filiphsps! - Fix the version endpoint reporting a different id than the client baked, which left the "update available" banner stuck forever.createVersionRouteresolved the id viaresolveBuildId(process.env)— passing the wholeprocess.envobject defeats Next's build-time inlining (it only replaces literalprocess.env.Xaccesses), so the bakedNEXT_PUBLIC_BUILD_IDwas invisible at runtime and the chain collapsed to an ambient runtime var or'development'. The default resolver now readsprocess.env.NEXT_PUBLIC_BUILD_IDdirectly so the endpoint reports the same id the client compares against. -
67e3ee6Thanks @filiphsps! - Run unit tests per-package through turbo so an unchanged package restores its result from the build cache instead of re-running; coverage is merged across packages and floor-gated as before. Tooling-only — no change to published output.
0.2.1
Patch Changes
29f8582Thanks @filiphsps! - Add npm version and downloads badges to the package READMEs, and point eachhomepageat its live docs page underhttps://nordcom.store/docs/packages/….
0.2.0
Minor Changes
- #2034
d500a1bThanks @filiphsps! - Addnext-build-notifier: a headless "new build available" indicator for Next.js. Generic build detection (any host) with first-class Vercel support, exposed as a config wrapper (withBuildNotifier), a route-handler factory (createVersionRoute), and a headless client API (BuildNotifierProvider/useBuildNotification/<BuildNotifier>).