forked from 0xWheatyz/SPARC
Frontend: Commit a lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds #480
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
Roadmap item: P2 - Frontend / Missing lockfile
Problem
The frontend repository has no committed lockfile. This means
npm install/yarncan install different package versions at different times, making builds non-reproducible and potentially introducing regressions.Task
package.json.Acceptance Criteria
package-lock.jsonorpnpm-lock.yaml) is committed.npm run build(or equivalent) succeeds in CI using only the lockfile.Already implemented.
frontend/package-lock.jsonexists and is committed. The CI workflow usesnpm ciwhich relies on it. Closing as completed.