You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All `use_*` functions operate on the current directory unless you specify the `base_path` argument. `β` indicates that usethis has setup everything for you. `β` indicates that you'll need to do some work yourself.
43
+
Most `use_*()` functions operate on the *current project*. If you've just used usethis to create a new package or project, that will be the current project. Otherwise usethis tries to confirm that current working directory can be recognized as a project. Use `proj_get()` and `proj_set()` for manual intervention. Some functions have no strong connections to projects and will expect you to provide a path.
44
+
45
+
usethis is quite chatty, explaining what it's doing and assigning you tasks. `β` indicates something usethis has done for you. `β` indicates that you'll need to do some work yourself.
46
+
47
+
Below is a quick look at how usethis can help to set up a package.
48
+
49
+
*Note: usethis is gaining more and more functionality for analytical project that are not packages. Stay tuned.*
All `use_*` functions operate on the current directory unless you specify the `base_path` argument. `β` indicates that usethis has setup everything for you. `β` indicates that you'll need to do some work yourself.
29
+
Most `use_*()` functions operate on the *current project*. If you've just used usethis to create a new package or project, that will be the current project. Otherwise usethis tries to confirm that current working directory can be recognized as a project. Use `proj_get()` and `proj_set()` for manual intervention. Some functions have no strong connections to projects and will expect you to provide a path.
30
+
31
+
usethis is quite chatty, explaining what it's doing and assigning you tasks. `β` indicates something usethis has done for you. `β` indicates that you'll need to do some work yourself.
32
+
33
+
Below is a quick look at how usethis can help to set up a package.
34
+
35
+
*Note: usethis is gaining more and more functionality for analytical project that are not packages. Stay tuned.*
24
36
25
37
```r
26
38
library(usethis)
@@ -54,7 +66,7 @@ use_dev_package("callr")
54
66
# Set up various packages ---------------------------------------------
55
67
use_roxygen_md()
56
68
#> β Setting Roxygen field in DESCRIPTION to 'list(markdown = TRUE)'
57
-
#> β Setting RoxygenNote field in DESCRIPTION to '6.0.1'
69
+
#> β Setting RoxygenNote field in DESCRIPTION to '6.0.1.9000'
58
70
#> β Re-document
59
71
60
72
use_rcpp()
@@ -71,18 +83,13 @@ use_rcpp()
71
83
use_revdep()
72
84
#> β Creating 'revdep/'
73
85
#> β Adding '^revdep$' to '.Rbuildignore'
74
-
#> β Adding 'revdep/checks' to './.gitignore'
75
-
#> β Adding 'revdep/library' to './.gitignore'
76
-
#> β Adding 'revdep/checks.noindex' to './.gitignore'
77
-
#> β Adding 'revdep/library.noindex' to './.gitignore'
78
-
#> β Adding 'revdep/data.sqlite' to './.gitignore'
0 commit comments