Skip to content

Commit 6ea53be

Browse files
authored
Merge pull request #5782 from redis/sync-latest-main
Sync "main" with "latest"
2 parents 0e49d73 + d9670d3 commit 6ea53be

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,3 @@ updates:
1717
interval: "weekly"
1818
cooldown:
1919
default-days: 3
20-
semver-major-days: 7
21-
semver-minor-days: 3
22-
semver-patch-days: 1

redisinsight/api/scripts/default-content.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as path from 'path';
21
import {
32
getFile,
43
updateFolderFromArchive,
@@ -10,11 +9,11 @@ const PATH_CONFIG = get('dir_path');
109
const CONTENT_CONFIG = get('content');
1110

1211
const archiveUrl = new URL(
13-
path.join(CONTENT_CONFIG.updateUrl, CONTENT_CONFIG.zip),
12+
`${CONTENT_CONFIG.updateUrl}/${CONTENT_CONFIG.zip}`,
1413
).toString();
1514

1615
const buildInfoUrl = new URL(
17-
path.join(CONTENT_CONFIG.updateUrl, CONTENT_CONFIG.buildInfo),
16+
`${CONTENT_CONFIG.updateUrl}/${CONTENT_CONFIG.buildInfo}`,
1817
).toString();
1918

2019
async function init() {

redisinsight/api/scripts/default-tutorials.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as path from 'path';
21
import {
32
getFile,
43
updateFolderFromArchive,
@@ -10,11 +9,11 @@ const PATH_CONFIG = get('dir_path');
109
const TUTORIALS_CONFIG = get('tutorials');
1110

1211
const archiveUrl = new URL(
13-
path.join(TUTORIALS_CONFIG.updateUrl, TUTORIALS_CONFIG.zip),
12+
`${TUTORIALS_CONFIG.updateUrl}/${TUTORIALS_CONFIG.zip}`,
1413
).toString();
1514

1615
const buildInfoUrl = new URL(
17-
path.join(TUTORIALS_CONFIG.updateUrl, TUTORIALS_CONFIG.buildInfo),
16+
`${TUTORIALS_CONFIG.updateUrl}/${TUTORIALS_CONFIG.buildInfo}`,
1817
).toString();
1918

2019
async function init() {

tests/e2e/yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,6 +2216,14 @@ better-sqlite3@^12.8.0:
22162216
bindings "^1.5.0"
22172217
prebuild-install "^7.1.1"
22182218

2219+
better-sqlite3@^12.8.0:
2220+
version "12.8.0"
2221+
resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-12.8.0.tgz#ec9ccd4a426a35f3b9355c147af6c92a6ddd6862"
2222+
integrity sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==
2223+
dependencies:
2224+
bindings "^1.5.0"
2225+
prebuild-install "^7.1.1"
2226+
22192227
bezier-js@^6.1.3:
22202228
version "6.1.4"
22212229
resolved "https://registry.yarnpkg.com/bezier-js/-/bezier-js-6.1.4.tgz#c7828f6c8900562b69d5040afb881bcbdad82001"

0 commit comments

Comments
 (0)