-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathupdatejQuery.R
64 lines (56 loc) · 1.76 KB
/
updatejQuery.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
library(magrittr)
version <- "3.6.0"
version_types <- "3.5.14"
jq_cdn_download <- function(version) {
Map(
src = c(".min.js", ".min.map", ".js"),
dst = c(".min.js", ".min.js.map", ".js"),
f = function(src, dst) {
download.file(
file.path("https://code.jquery.com", paste0("jquery-", version, src)),
file.path("inst", "www", "shared", paste0("jquery", dst))
)
}
)
}
jq_cdn_download(version)
# Add in source map location
# Required given comments in https://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/
jquery_min_js <- file.path("inst", "www", "shared", "jquery.min.js")
# Point to the version-less source map file
cat(
file = jquery_min_js,
append = TRUE,
"//# sourceMappingURL=jquery.min.js.map\n"
)
# Replace versioned file source locations with version-less file source
# locations (~2 locations)
jquery_min_js_map <- paste0(jquery_min_js, ".map")
brio::read_lines(jquery_min_js_map) %>%
gsub(
gsub("\\.", "\\\\.", paste0("\"jquery-", version, ".")),
"\"jquery.",
.
) %>%
brio::write_lines(jquery_min_js_map)
download.file(
"https://raw.githubusercontent.com/jquery/jquery/master/AUTHORS.txt",
"inst/www/shared/jquery-AUTHORS.txt"
)
writeLines(
c(
"# Generated by tools/updatejQuery.R; do not edit by hand",
sprintf('version_jquery <- "%s"', version)
),
rprojroot::find_package_root_file("R", "version_jquery.R")
)
# Update TypeScript installation
withr::with_dir(
rprojroot::find_package_root_file(),
{
exit_code <- system(paste0("yarn add --dev jquery@", version))
if (exit_code != 0) stop("yarn could not install jquery")
exit_code <- system(paste0("yarn add @types/jquery@", version_types))
if (exit_code != 0) stop("yarn could not install @types/jquery")
}
)