-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use bootstrap version from template package if not defined local…
- Loading branch information
Showing
5 changed files
with
143 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Invalid bootstrap version spec in template package | ||
|
||
Code | ||
local_pkgdown_site(meta = list(template = list(package = "templatepackage"))) | ||
Condition | ||
Error in `as_pkgdown()`: | ||
! Both template.bootstrap and template.bslib.version are set. | ||
i Update the pkgdown config in templatepackage, or set a Bootstrap version in your '_pkgdown.yml'. | ||
|
||
# Invalid bootstrap version spec in _pkgdown.yml | ||
|
||
Code | ||
local_pkgdown_site(meta = list(template = list(bootstrap = 4, bslib = list( | ||
version = 5)))) | ||
Condition | ||
Error in `as_pkgdown()`: | ||
! Both template.bootstrap and template.bslib.version are set. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters