File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Imports:
25
25
fs,
26
26
glue,
27
27
methods,
28
+ pkgbuild,
28
29
rlang (>= 1.1.1),
29
30
rprojroot,
30
31
utils,
@@ -35,7 +36,6 @@ Suggests:
35
36
mathjaxr,
36
37
mockr,
37
38
pak,
38
- pkgbuild,
39
39
Rcpp,
40
40
remotes,
41
41
rstudioapi,
Original file line number Diff line number Diff line change 1
1
# pkgload (development version)
2
2
3
- * ` load_all() ` no longer standardises version number in namespace metadata
3
+ * pkgload now depends unconditionally on pkgbuild (#249 ).
4
+
5
+ * ` load_all() ` no longer standardises version number in namespace metadata
4
6
(#231 ).
5
-
7
+
6
8
* New ` pkg_version_raw() ` to get raw package version as a string.
7
9
10
+
8
11
# pkgload 1.3.2
9
12
10
13
* Fixes for CRAN checks.
Original file line number Diff line number Diff line change @@ -149,11 +149,9 @@ load_all <- function(path = ".",
149
149
}
150
150
151
151
if (isTRUE(compile )) {
152
- rlang :: check_installed(" pkgbuild" , reason = " to compile packages with a `src/` directory." )
153
152
pkgbuild :: clean_dll(path )
154
153
pkgbuild :: compile_dll(path , quiet = quiet )
155
154
} else if (identical(compile , NA )) {
156
- rlang :: check_installed(" pkgbuild" , reason = " to compile packages with a `src/` directory." )
157
155
pkgbuild :: compile_dll(path , quiet = quiet )
158
156
} else if (identical(compile , FALSE )) {
159
157
# don't compile
You can’t perform that action at this time.
0 commit comments