Skip to content

Commit ad65d49

Browse files
adjust lock Justfile command and fix call in update command (#286)
1 parent 9600cf5 commit ad65d49

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717

1818
## [Unreleased]
1919

20+
### Changed
21+
22+
- 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.
23+
2024
### Fixed
2125

2226
- 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.

src/django_twc_project/Justfile.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ lint:
4747
# Generate lockfiles for all dependencies
4848
lock:
4949
@just py lock
50+
@just docs lock
5051
@just node lock
5152

5253
# Print out the logs of all Docker containers, optionally specifying a container to focus on
@@ -127,8 +128,7 @@ up:
127128
# Update local development environment
128129
update:
129130
@just docker pull
130-
@just py lock
131-
@just node lock
131+
@just lock
132132
@just bootstrap
133133

134134
# Upgrade all dependencies to their newest versions

0 commit comments

Comments
 (0)