Skip to content

Commit

Permalink
build: 🔨 targets needs some extra things installed, which are in conf…
Browse files Browse the repository at this point in the history
…ig/needs/data (#178)

## Description

These changes are fixing the justfile build that needs to install extra
packages needed for targets.
  • Loading branch information
lwjohnst86 authored Dec 20, 2024
1 parent dcc1ad2 commit 8a84677
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ run-all: clean install-package-dependencies document run-targets spell-check sty
clean:
#!/usr/bin/Rscript
devtools::clean_vignettes()
pkgdown::clean_site()

# Install package dependencies
install-package-dependencies:
#!/usr/bin/Rscript
pak::pak(ask = FALSE)
pak::pak(
dependencies = c("all", "Config/Needs/data"),
ask = FALSE
)

# Run document generators
document:
Expand Down
2 changes: 1 addition & 1 deletion osdc.Rproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Version: 1.0
ProjectId: 7f6e77e2-0075-4eba-b544-d5a64cead886
ProjectId: b8b5b7ec-8971-4742-a27c-a44bc5461c64

RestoreWorkspace: No
SaveWorkspace: No
Expand Down

0 comments on commit 8a84677

Please sign in to comment.