File tree Expand file tree Collapse file tree 5 files changed +20
-3
lines changed
Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 22# R specific hooks: https://github.com/lorenzwalthert/precommit
33repos :
44- repo : https://github.com/lorenzwalthert/precommit
5- rev : v0.1.3.9014
5+ rev : v0.2.0
66 hooks :
77 - id : style-files
88 args : [--style_pkg=styler, --style_fun=tidyverse_style]
9- - id : roxygenize
9+ # - id: roxygenize
1010 # codemeta must be above use-tidy-description when both are used
1111 # - id: codemeta-description-updated
1212 - id : use-tidy-description
Original file line number Diff line number Diff line change @@ -114,7 +114,10 @@ do_pkgdown <- function(...,
114114 # ' 1. [step_build_pkgdown()] in the `"deploy"` stage,
115115 # ' forwarding all `...` arguments.
116116 get_stage(" deploy" ) %> %
117- add_step(step_build_pkgdown(!!! enquos(... )))
117+ add_step(step_build_pkgdown(!!! enquos(... ))) %> %
118+ add_code_step(writeLines(" " , paste0(!! path , " /.nojekyll" ))) %> %
119+ add_code_step(dir.create(paste0(!! path , " dev" ), showWarnings = FALSE )) %> %
120+ add_code_step(writeLines(" " , paste0(!! path , " /dev/.nojekyll" )))
118121
119122 # ' 1. [step_do_push_deploy()] in the `"deploy"` stage.
120123 if (isTRUE(deploy )) {
Original file line number Diff line number Diff line change 2222CamelCase
2323ccache
2424CCACHE
25+ Changelog
2526cheatsheet
2627ci
2728circleci
8485evans
8586familyName
8687fansi
88+ faq
8789fff
8890fi
8991figshare
@@ -119,6 +121,7 @@ harfbuzz
119121hdiutil
120122homebrew
121123Homebrew
124+ href
122125http
123126https
124127hugo
182185mtime
183186Müller
184187mv
188+ navbar
185189nCCFLAGS
186190nCFLAGS
187191nCPP
194198nhash
195199nlopt
196200NOHASHDIR
201+ nojekyll
197202noreply
198203nsloppiness
199204NUM
277282seealso
278283Sexpr
279284SHA
285+ showWarnings
280286SKD
281287SoftwareApplication
282288softwareRequirements
@@ -299,7 +305,9 @@ TicStep
299305tidyverse
300306tinytex
301307tmp
308+ toc
302309toolchain
310+ tooltip
303311traceback
304312tracebacks
305313travis
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ reference:
5353- title : CRAN repository functions
5454 contents :
5555 - starts_with("repo")
56+ - title : Helpers
57+ contents :
58+ - github_helpers
5659- title : Deprecated
5760 contents :
5861 - Deprecated
Original file line number Diff line number Diff line change 66▶ step_rcmdcheck()
77── deploy ───────────────────────────────────────────────────────────── stage ──
88▶ step_build_pkgdown()
9+ ▶ step_run_code(writeLines("", paste0("docs", "/.nojekyll")))
10+ ▶ step_run_code(dir.create(paste0("docs", "dev"), showWarnings = FALSE))
11+ ▶ step_run_code(writeLines("", paste0("docs", "/dev/.nojekyll")))
You can’t perform that action at this time.
0 commit comments