Skip to content

Commit

Permalink
Update dependency management docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jan 8, 2025
1 parent 24c750d commit cc010ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/development/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ e.g. `x.1.z` -> `x.2.z` or `1.y.z` -> `2.y.z`
docker compose exec dev poetry add tna-frontend-jinja=0.5.0

# Update the tna-frontend package to 0.5.0 in npm
npm i tna-frontend-jinja@0.5.0
npm i @nationalarchives/[email protected]

# After installing, rebuild the app container
docker compose up --build -d app
Expand All @@ -40,6 +40,9 @@ See the [Poetry docs](https://python-poetry.org/docs/cli/#add) for more options.
# Remove the pendulum package
docker compose exec dev poetry remove pendulum

# Remove the jquery package
npm remove jquery

# After removing, rebuild the app container
docker compose up --build -d app
```

0 comments on commit cc010ea

Please sign in to comment.