Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/package-review-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The functionality should be sufficiently documented in man pages with runnable e
- [ ] `R CMD check --no-build-vignettes` within 10 minutes.
- [ ] Memory requirement below 3GB.
- [ ] Size of individual files <= 5MB.
- [ ] Size of tarball <= 10MB.
- [ ] README file.

## The DESCRIPTION file
Expand Down
2 changes: 1 addition & 1 deletion general-package-development.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Do not use filenames that differ only in case, as not all file systems are case-
### Package size {#package-size}

The source package resulting from running `R CMD build` should occupy less than
5 MB on disk. If your package includes some screenshots (e.g., in the
10 MB on disk. If your package includes some screenshots (e.g., in the
vignettes), this limit can be reached quite quickly. Their size can be reduced
(often as much as 70%) with lossy compression using tools such as
[pngquant](https://pngquant.org/) (available as a command line utility and as a
Expand Down