-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d49bac8
commit be0cc46
Showing
2 changed files
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# On library attachment, print message to user. | ||
.onAttach <- function(libname, pkgname) { | ||
msg <- paste0( | ||
"\n", | ||
"== Welcome to tidyDenovix ===========================================================================", | ||
"\nIf you find this package useful, please leave a star: ", | ||
"\n https://github.com/AlphaPrime7/tidyDenovix'", | ||
"\n", | ||
"\nIf you encounter a bug or want to request an enhancement please file an issue at:", | ||
"\n https://github.com/AlphaPrime7/tidyDenovix/issues", | ||
"\n", | ||
"\n", | ||
"\nThank you for using tidyDenovix!", | ||
"\n" | ||
) | ||
|
||
packageStartupMessage(msg) | ||
} |
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,5 @@ | ||
globalVariables( | ||
names = c(".", | ||
"x260_280_alert", | ||
"x260_230_alert") | ||
) |