Skip to content

Commit ba6ec7d

Browse files
committed
update makefile, readme
1 parent 22f12db commit ba6ec7d

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashboard
22
Title: What the Package Does (One Line, Title Case)
3-
Version: 0.2.2.101
3+
Version: 0.2.2.102
44
Authors@R:
55
person(given = "First",
66
family = "Last",

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,18 @@ available options:
3737

3838
```bash
3939
Usage: make [target]
40-
build 'quarto build' command
41-
check Run `R CMD check` on package
42-
dev alias for 'serve'
43-
doc Update package documentation with `roxygen2`
44-
help Show this help
45-
recache Start local quarto server with '--cache-refresh' to force cache refresh
46-
renv-snapshot Update the 'renv.lock' file, generally run after `renv-update`
47-
renv-update Update 'renv' dependencies to latest versions
48-
serve Start local quarto server
40+
build 'quarto build' command
41+
check Run `R CMD check` on package
42+
clean Clean all previously rendered and cached stuff from quarto/ dir
43+
dev alias for 'serve'
44+
doc Update package documentation with `roxygen2`
45+
help Show this help
46+
recache Start local quarto server with '--cache-refresh' to force cache refresh
47+
render 'quarto render' command
48+
renv-snapshot Update the 'renv.lock' file, generally run after `renv-update`
49+
renv-update Update 'renv' dependencies to latest versions
50+
serve Start local quarto server
51+
test Run package tests
4952
```
5053

5154
The last of these commands runs the `quarto dev` command in the `quarto`

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "dashboard: What the Package Does (One Line, Title Case)",
77
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
88
"license": "https://spdx.org/licenses/MIT",
9-
"version": "0.2.2.101",
9+
"version": "0.2.2.102",
1010
"programmingLanguage": {
1111
"@type": "ComputerLanguage",
1212
"name": "R",

makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ render: ## 'quarto render' command
3333
cd quarto; \
3434
quarto render
3535

36+
build: ## 'quarto build' command
37+
cd quarto; \
38+
quarto build
39+
3640
renv-update: ## Update 'renv' dependencies to latest versions
3741
Rscript -e "renv::update()";
3842

0 commit comments

Comments
 (0)