fix(ignore): bump typescript from 5.9.3 to 6.0.2 (#1112)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
Co-authored-by: Nerivec <62446222+Nerivec@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2026-04-14 20:35:31 +02:00
committed by GitHub
parent e3309abbac
commit 757710b4ee
27 changed files with 50 additions and 51 deletions

View File

@@ -8,8 +8,8 @@
import {copyFileSync, existsSync, mkdirSync} from "node:fs";
import path from "node:path";
import {it} from "vitest";
import * as common from "../src/common";
import type {ExtraMetas, RepoImageMeta} from "../src/types";
import * as common from "../src/common.js";
import type {ExtraMetas, RepoImageMeta} from "../src/types.js";
export const IMAGE_LUMI = "20240726111155_OTA_lumi.switch.n1aeu1_0.0.0_0025_20240725_8F4299.ota";
export const IMAGE_GLEDOPTO = "GL-B-008P_V17A1_OTAV7.ota";

View File

@@ -1,12 +1,11 @@
import {existsSync, readFileSync, rmSync, writeFileSync} from "node:fs";
import path from "node:path";
import type * as CoreApi from "@actions/core";
import type {Context} from "@actions/github/lib/context";
import type {Octokit} from "@octokit/rest";
import {afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi} from "vitest";
import * as common from "../src/common";
import {checkOtaPR} from "../src/ghw_check_ota_pr";
import type {RepoImageMeta} from "../src/types";
import * as common from "../src/common.js";
import {checkOtaPR} from "../src/ghw_check_ota_pr.js";
import type {Context, RepoImageMeta} from "../src/types.js";
import {
BASE_IMAGES_TEST_DIR_PATH,
getAdjustedContent,
@@ -29,7 +28,7 @@ import {
PREV_IMAGES_TEST_DIR_PATH,
useImage,
withExtraMetas,
} from "./data.test";
} from "./data.test.js";
const github = {
rest: {

View File

@@ -1,16 +1,15 @@
import {copyFileSync, existsSync, mkdirSync, readFileSync, renameSync, rmSync} from "node:fs";
import path from "node:path";
import type * as CoreApi from "@actions/core";
import type {Context} from "@actions/github/lib/context";
import {afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi} from "vitest";
import * as common from "../src/common";
import * as common from "../src/common.js";
import {
NOT_IN_BASE_MANIFEST_IMAGES_DIR,
NOT_IN_MANIFEST_FILENAME,
NOT_IN_PREV_MANIFEST_IMAGES_DIR,
reProcessAllImages,
} from "../src/ghw_reprocess_all_images";
import type {RepoImageMeta} from "../src/types";
} from "../src/ghw_reprocess_all_images.js";
import type {Context, RepoImageMeta} from "../src/types.js";
import {
BASE_IMAGES_TEST_DIR_PATH,
getAdjustedContent,
@@ -26,7 +25,7 @@ import {
PREV_IMAGES_TEST_DIR_PATH,
useImage,
withExtraMetas,
} from "./data.test";
} from "./data.test.js";
/** not used */
const github = {};

View File

@@ -1,11 +1,10 @@
import {rmSync} from "node:fs";
import type * as CoreApi from "@actions/core";
import type {Context} from "@actions/github/lib/context";
import type {Octokit} from "@octokit/rest";
import {afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi} from "vitest";
import * as common from "../src/common";
import {updateManifests} from "../src/ghw_update_manifests";
import type {RepoImageMeta} from "../src/types";
import * as common from "../src/common.js";
import {updateManifests} from "../src/ghw_update_manifests.js";
import type {Context, RepoImageMeta} from "../src/types.js";
import {
BASE_IMAGES_TEST_DIR_PATH,
getAdjustedContent,
@@ -15,7 +14,7 @@ import {
PREV_IMAGES_TEST_DIR_PATH,
useImage,
withExtraMetas,
} from "./data.test";
} from "./data.test.js";
const github = {
rest: {

View File

@@ -1,8 +1,8 @@
import {existsSync, mkdirSync, readFileSync, rmSync} from "node:fs";
import {afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, type MockInstance, vi} from "vitest";
import * as common from "../src/common";
import {ProcessFirmwareImageStatus, processFirmwareImage} from "../src/process_firmware_image";
import type {RepoImageMeta} from "../src/types";
import * as common from "../src/common.js";
import {ProcessFirmwareImageStatus, processFirmwareImage} from "../src/process_firmware_image.js";
import type {RepoImageMeta} from "../src/types.js";
import {
BASE_IMAGES_TEST_DIR_PATH,
getAdjustedContent,
@@ -20,7 +20,7 @@ import {
PREV_IMAGES_TEST_DIR_PATH,
useImage,
withExtraMetas,
} from "./data.test";
} from "./data.test.js";
describe("Process Firmware Image", () => {
let baseManifest: RepoImageMeta[];