Skip to content

Commit 4e93ebc

Browse files
chore: update external resources (#54)
Updated: - rhdh-plugin-export-utils scripts (4f020a7 -> d8ced8b) - rhdh yarn.lock (e3bbdf4 -> 6dafd3e) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 662a793 commit 4e93ebc

3 files changed

Lines changed: 23 additions & 18 deletions

File tree

resources/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"export-util-script-hash": "4f020a70b742e12b589571a3e62e809d3f67f939",
3-
"rhdh-hash": "e3bbdf4b096ffb80b184c0161ca782c99c62320c"
2+
"export-util-script-hash": "d8ced8b57c27b39027c250ae67517b2118dcc589",
3+
"rhdh-hash": "6dafd3ef9428984f6c925d58fcadf9b19f4d9063"
44
}

resources/rhdh/yarn.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16872,13 +16872,6 @@ __metadata:
1687216872
languageName: node
1687316873
linkType: hard
1687416874

16875-
"@trysound/sax@npm:0.2.0":
16876-
version: 0.2.0
16877-
resolution: "@trysound/sax@npm:0.2.0"
16878-
checksum: 10c0/44907308549ce775a41c38a815f747009ac45929a45d642b836aa6b0a536e4978d30b8d7d680bbd116e9dd73b7dbe2ef0d1369dcfc2d09e83ba381e485ecbe12
16879-
languageName: node
16880-
linkType: hard
16881-
1688216875
"@ts-morph/common@npm:~0.25.0":
1688316876
version: 0.25.0
1688416877
resolution: "@ts-morph/common@npm:0.25.0"
@@ -35562,6 +35555,13 @@ __metadata:
3556235555
languageName: node
3556335556
linkType: hard
3556435557

35558+
"sax@npm:^1.5.0":
35559+
version: 1.6.0
35560+
resolution: "sax@npm:1.6.0"
35561+
checksum: 10c0/e5593f4a91eb25761a688c4d96902e4e95a0dd6017bc65146b6f21236e3d715cf893333b76bc758923c9574c2fb5a7a76c3a81e96ea15432f2624f906c027c1e
35562+
languageName: node
35563+
linkType: hard
35564+
3556535565
"saxes@npm:^6.0.0":
3556635566
version: 6.0.0
3556735567
resolution: "saxes@npm:6.0.0"
@@ -37073,19 +37073,19 @@ __metadata:
3707337073
linkType: hard
3707437074

3707537075
"svgo@npm:^2.7.0, svgo@npm:^2.8.0":
37076-
version: 2.8.0
37077-
resolution: "svgo@npm:2.8.0"
37076+
version: 2.8.2
37077+
resolution: "svgo@npm:2.8.2"
3707837078
dependencies:
37079-
"@trysound/sax": "npm:0.2.0"
3708037079
commander: "npm:^7.2.0"
3708137080
css-select: "npm:^4.1.3"
3708237081
css-tree: "npm:^1.1.3"
3708337082
csso: "npm:^4.2.0"
3708437083
picocolors: "npm:^1.0.0"
37084+
sax: "npm:^1.5.0"
3708537085
stable: "npm:^0.1.8"
3708637086
bin:
37087-
svgo: bin/svgo
37088-
checksum: 10c0/0741f5d5cad63111a90a0ce7a1a5a9013f6d293e871b75efe39addb57f29a263e45294e485a4d2ff9cc260a5d142c8b5937b2234b4ef05efdd2706fb2d360ecc
37087+
svgo: ./bin/svgo
37088+
checksum: 10c0/a3a533e1678aecdfa1c67f06d71f104da7ef574a3f63a8dfeda10368b42428c67d09a06b4eee233c5ed49ac815f1febb6193cba0f611a21bfc00366d7930205d
3708937089
languageName: node
3709037090
linkType: hard
3709137091

scripts/export-workspace.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,15 @@ run_cli() {
5757
echo "##########################################################"
5858
cat /tmp/export-dynamic-cli.log
5959
echo "##########################################################"
60-
if [[ -f yarn-install.log ]]; then
61-
cat yarn-install.log;
62-
echo "##########################################################"
63-
fi
60+
61+
# Search for both types of log files for backwards compatibility
62+
local yarn_install_logs=("yarn-install.log" "rhdh-cli.yarn-install.log")
63+
for log_file in "${yarn_install_logs[@]}"; do
64+
if [[ -f "$log_file" ]]; then
65+
cat "$log_file"
66+
echo "##########################################################"
67+
fi
68+
done
6469
return 1
6570
fi
6671
rm -f /tmp/export-dynamic-cli.log

0 commit comments

Comments
 (0)