Skip to content

Commit

Permalink
adjust lock Justfile command and fix call in update command (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 5, 2024
1 parent 9600cf5 commit ad65d49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/django_twc_project/Justfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ad65d49

Please sign in to comment.