diff --git a/CHANGELOG.md b/CHANGELOG.md index c4490846..26ec40d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Changed + +- Added the documentation `just docs lock` subcommand to the top-level Justfile `just lock` command and adjusted calls to individual `lock` commands to this top-level command. + ### Fixed - All `uv pip install` commands now use the correct CLI syntax for installing from requirements files. When I migrated back from `uv pip sync` I failed to take in to account the slight differences between how dependencies are installed. diff --git a/src/django_twc_project/Justfile.jinja b/src/django_twc_project/Justfile.jinja index e554f5fa..8402676d 100644 --- a/src/django_twc_project/Justfile.jinja +++ b/src/django_twc_project/Justfile.jinja @@ -47,6 +47,7 @@ lint: # Generate lockfiles for all dependencies lock: @just py lock + @just docs lock @just node lock # Print out the logs of all Docker containers, optionally specifying a container to focus on @@ -127,8 +128,7 @@ up: # Update local development environment update: @just docker pull - @just py lock - @just node lock + @just lock @just bootstrap # Upgrade all dependencies to their newest versions