roxygen2 忽略 R 文件夹中的单个文件
roxygen2 ignores a single file in the R folder
我正在处理一个包(this one) and trying to generate documentation (.Rd files) for the functions. For some reason one file in the R folder is completely ignored by roxygen2 and I cannot figure out why...The file in question is utils_shiny.R. There is a very similar file, utils.R,按预期生成了 .Rd 文件。这两个文件都包含未导出的函数并具有 same/similar 组 roxygen 标签。如果我将 utils_shiny
中的所有函数放入 utils
然后生成 .Rd 文件...
我尝试按照 的建议擦除所有 .Rd 文件,删除 NAMESPACE,重命名 utils_shiny.R
,但这没有什么不同。
我正在使用 roxygen 6.0.1, devtools 1.13.3
事实证明,我忘记了 .Rbuildignore
中的一些条目,这些条目导致构建忽略了更多原本打算的文件,其中包括提到的文件 (utils_shiny.R)。
我正在处理一个包(this one) and trying to generate documentation (.Rd files) for the functions. For some reason one file in the R folder is completely ignored by roxygen2 and I cannot figure out why...The file in question is utils_shiny.R. There is a very similar file, utils.R,按预期生成了 .Rd 文件。这两个文件都包含未导出的函数并具有 same/similar 组 roxygen 标签。如果我将 utils_shiny
中的所有函数放入 utils
然后生成 .Rd 文件...
我尝试按照 utils_shiny.R
,但这没有什么不同。
我正在使用 roxygen 6.0.1, devtools 1.13.3
事实证明,我忘记了 .Rbuildignore
中的一些条目,这些条目导致构建忽略了更多原本打算的文件,其中包括提到的文件 (utils_shiny.R)。