diff --git a/examples/fixtures/qunit-assertions-fail.js b/examples/fixtures/qunit-assertions-fail.js
new file mode 100644
index 0000000..3585469
--- /dev/null
+++ b/examples/fixtures/qunit-assertions-fail.js
@@ -0,0 +1,174 @@
+// Using all examples from QUnit API help - https://qunitjs.com/api/assert
+
+QUnit.test("Should pass assert.closeTo", (assert) => {
+ const x = 0.1 + 0.2; // 0.30000000000000004
+ // passing: must be between 0.299 and 0.301
+ assert.closeTo?.(x, 500, 1);
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test("Should pass assert.deepEqual", (assert) => {
+ function makeComplexObject(name, extra, country) {
+ var children = new Set();
+ children.add("Alice");
+ children.add(extra);
+ var countryToCapital = { UK: "London" };
+ return {
+ name: name,
+ children: children,
+ location: {
+ country: country,
+ nearestCapital: countryToCapital[country],
+ },
+ };
+ }
+ var result = makeComplexObject("Marty", "Bob", "UK");
+ // Succeeds!
+ // While each object is distinct by strict equality (identity),
+ // every property, array, object, etc has equal values.
+ assert.deepEqual(result, {
+ name: "Marty XXXXXX",
+ children: new Set(["Alice", "Bob"]),
+ location: { country: "UK", nearestCapital: "London" },
+ });
+});
+
+QUnit.test("Should pass assert.equal", (assert) => {
+ assert.equal(1, "2", "String '1' and number 1 have the same value");
+});
+
+QUnit.test("Should pass assert.expect", (assert) => {
+ assert.ok(true);
+ assert.expect(2);
+});
+
+QUnit.test("Should pass assert.false", (assert) => {
+ assert.false?.(true, "boolean false");
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test.skip?.("Should skip test", (assert) => {
+ assert.ok(false);
+});
+
+QUnit.test("Should pass assert.notDeepEqual", (assert) => {
+ const result = { foo: "yep" };
+ // succeeds, objects are similar but have a different foo value.
+ assert.ok(true);
+ assert.notDeepEqual(result, { foo: "yep" });
+});
+
+QUnit.test("Should pass assert.notEqual", (assert) => {
+ const result = 2;
+ // succeeds, 1 and 2 are different.
+ assert.notEqual(result, 2);
+});
+
+QUnit.test("Should pass assert.notOk", (assert) => {
+ assert.notOk(true, "boolean false");
+});
+
+QUnit.test("Should pass assert.notPropContains", (assert) => {
+ const result = {
+ foo: 0,
+ vehicle: {
+ timeCircuits: "on",
+ fluxCapacitor: "fluxing",
+ engine: "running",
+ },
+ quux: 1,
+ };
+ // succeeds, property "timeCircuits" is actually "on"
+ assert.notPropContains?.(result, {
+ vehicle: {
+ timeCircuits: "on",
+ },
+ });
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test("Should pass assert.notPropEqual", (assert) => {
+ class Foo {
+ constructor() {
+ this.x = "1";
+ this.y = 2;
+ }
+ walk() {}
+ run() {}
+ }
+ const foo = new Foo();
+ // succeeds, only own property values are compared (using strict equality),
+ // and property "x" is indeed not equal (string instead of number).
+ assert.notPropEqual?.(foo, {
+ x: "1",
+ y: 2,
+ });
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test("Should pass assert.notStrictEqual", (assert) => {
+ const result = "2";
+ // succeeds, while the number 2 and string 2 are similar, they are strictly different.
+ assert.notStrictEqual(result, "2");
+});
+
+QUnit.test("Should pass assert.ok", (assert) => {
+ assert.ok(false, "boolean true");
+});
+
+QUnit.test("Should pass assert.propContains", (assert) => {
+ const result = {
+ foo: 0,
+ vehicle: {
+ timeCircuits: "on",
+ fluxCapacitor: "fluxing",
+ engine: "running",
+ },
+ quux: 1,
+ };
+ assert.propContains?.(result, {
+ foo: 1,
+ vehicle: { fluxCapacitor: "fluxing" },
+ });
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test("Should pass assert.propEqual", (assert) => {
+ class Foo {
+ constructor() {
+ this.x = 1;
+ this.y = 2;
+ }
+ walk() {}
+ run() {}
+ }
+ const foo = new Foo();
+ // succeeds, own properties are strictly equal,
+ // and inherited properties (such as which constructor) are ignored.
+ assert.propEqual?.(foo, {
+ x: 2,
+ y: 2,
+ });
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test.skip("Should pass assert.rejects", (assert) => {
+ assert.rejects?.(Promise.resolve("ERROR"));
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
+
+QUnit.test("Should pass assert.strictEqual", (assert) => {
+ const result = 2;
+ assert.strictEqual(result, 333);
+});
+
+QUnit.test.skip("Should pass assert.throws", (assert) => {
+ assert.throws(function () {
+ //throw new Error("boo");
+ });
+});
+
+QUnit.test("Should pass assert.true", (assert) => {
+ assert.true?.(false, "boolean true");
+ assert.ok(true, "Ensure at least 1 assertion is always present");
+});
diff --git a/examples/qunit-fail/qunit-assertions-fail.html b/examples/qunit-fail/qunit-assertions-fail.html
new file mode 100644
index 0000000..d71e28b
--- /dev/null
+++ b/examples/qunit-fail/qunit-assertions-fail.html
@@ -0,0 +1,20 @@
+
+
+ QUnit Tests
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/qunit-fail/unit.test.ts b/examples/qunit-fail/unit.test.ts
new file mode 100644
index 0000000..dae1348
--- /dev/null
+++ b/examples/qunit-fail/unit.test.ts
@@ -0,0 +1,8 @@
+describe("QUnit test page", function () {
+ it("should fail QUnit assertions - LOCAL", async function () {
+ await browser.url(
+ "http://localhost:4567/examples/qunit-fail/qunit-assertions-fail.html",
+ );
+ await browser.getQUnitResults();
+ });
+});
diff --git a/examples/wdio-features.conf.js b/examples/wdio-features.conf.js
new file mode 100644
index 0000000..3e51033
--- /dev/null
+++ b/examples/wdio-features.conf.js
@@ -0,0 +1,40 @@
+export const config = {
+ specs: ["./**/wdio-features/*.test.js"],
+ capabilities: [
+ {
+ browserName: "chrome",
+ browserVersion: "stable",
+ "goog:chromeOptions": {
+ args: ["headless", "disable-gpu", "window-size=1024,768"],
+ },
+ },
+ ],
+
+ logLevel: "warn",
+ framework: "mocha",
+ reporters: ["spec"],
+ waitforTimeout: 60000,
+
+ services: [
+ "qunit",
+ [
+ "monocart",
+ {
+ name: "My WebdriverIO Coverage Report",
+ filter: {
+ "**/resources/**": false,
+ "**/test-resources/**": false,
+ "**/test/**": false,
+ "**/**": true,
+ },
+ reports: ["v8", "console-details"],
+ outputDir: "./coverage",
+ },
+ ],
+ ],
+
+ mochaOpts: {
+ ui: "bdd",
+ timeout: 60000,
+ },
+};
diff --git a/examples/wdio-features/coverage.test.js b/examples/wdio-features/coverage.test.js
new file mode 100644
index 0000000..b383347
--- /dev/null
+++ b/examples/wdio-features/coverage.test.js
@@ -0,0 +1,6 @@
+describe("QUnit test page", function () {
+ it("should pass QUnit tests and get code coverage - LOCAL", async function () {
+ await browser.url("http://localhost:8080/test/unit/unitTests.qunit.html");
+ await browser.getQUnitResults();
+ });
+});
diff --git a/examples/wdio-features/unit.test.ts b/examples/wdio-features/unit.test.ts
deleted file mode 100644
index e3a09bb..0000000
--- a/examples/wdio-features/unit.test.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-describe.skip("QUnit test page", function () {
- it("should pass QUnit tests and get code coverage", async function () {
- await browser.url(
- "https://ui5.sap.com/test-resources/sap/m/demokit/cart/webapp/test/unit/unitTests.qunit.html",
- );
- await browser.getQUnitResults();
- const coverage = await browser.getCoverageReport();
- expect(coverage?.statements?.covered).toBeGreaterThan(0);
- });
-});
diff --git a/package.json b/package.json
index 6c9c0a8..564d9c2 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,7 @@
"test:qunit": "wdio run examples/wdio.conf.js --suite qunit",
"test:no:specs": "wdio run examples/wdio.no-specs.conf.js",
"lint": "prettier . --check --cache && eslint --cache",
- "lint:ci": "eslint -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
+ "lint:ci": "eslint --quiet -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"pretty": "prettier . --write --cache"
},
"dependencies": {
@@ -51,13 +51,13 @@
"eslint-config-mlauffer-nodejs": "^3.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-wdio": "^9.2.11",
- "globals": "^15.12.0",
+ "globals": "^15.13.0",
"prettier": "^3.4.1",
"puppeteer-core": "^23.9.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript-eslint": "^8.16.0",
- "vitest": "^2.1.6",
+ "vitest": "^2.1.7",
"wdio-monocart-service": "^1.0.2"
},
"peerDependencies": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e82e29e..7ed3ce0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,8 +61,8 @@ importers:
specifier: ^9.2.11
version: 9.2.11
globals:
- specifier: ^15.12.0
- version: 15.12.0
+ specifier: ^15.13.0
+ version: 15.13.0
prettier:
specifier: ^3.4.1
version: 3.4.1
@@ -79,8 +79,8 @@ importers:
specifier: ^8.16.0
version: 8.16.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)
vitest:
- specifier: ^2.1.6
- version: 2.1.6(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2)
+ specifier: ^2.1.7
+ version: 2.1.7(@types/node@22.10.1)
wdio-monocart-service:
specifier: ^1.0.2
version: 1.0.2
@@ -737,28 +737,34 @@ packages:
resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
engines: {node: '>=16'}
- '@esbuild/aix-ppc64@0.23.1':
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
- engines: {node: '>=18'}
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.24.0':
- resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm64@0.23.1':
resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.24.0':
- resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
os: [android]
'@esbuild/android-arm@0.23.1':
@@ -767,10 +773,10 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.24.0':
- resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
- engines: {node: '>=18'}
- cpu: [arm]
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [android]
'@esbuild/android-x64@0.23.1':
@@ -779,11 +785,11 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.24.0':
- resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
'@esbuild/darwin-arm64@0.23.1':
resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
@@ -791,10 +797,10 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.24.0':
- resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [darwin]
'@esbuild/darwin-x64@0.23.1':
@@ -803,11 +809,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.24.0':
- resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
'@esbuild/freebsd-arm64@0.23.1':
resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
@@ -815,10 +821,10 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.24.0':
- resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [freebsd]
'@esbuild/freebsd-x64@0.23.1':
@@ -827,11 +833,11 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.24.0':
- resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
'@esbuild/linux-arm64@0.23.1':
resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
@@ -839,10 +845,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.24.0':
- resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
os: [linux]
'@esbuild/linux-arm@0.23.1':
@@ -851,10 +857,10 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.24.0':
- resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
- engines: {node: '>=18'}
- cpu: [arm]
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
os: [linux]
'@esbuild/linux-ia32@0.23.1':
@@ -863,10 +869,10 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.24.0':
- resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
- engines: {node: '>=18'}
- cpu: [ia32]
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
os: [linux]
'@esbuild/linux-loong64@0.23.1':
@@ -875,10 +881,10 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.24.0':
- resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
- engines: {node: '>=18'}
- cpu: [loong64]
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
os: [linux]
'@esbuild/linux-mips64el@0.23.1':
@@ -887,10 +893,10 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.24.0':
- resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
- engines: {node: '>=18'}
- cpu: [mips64el]
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
os: [linux]
'@esbuild/linux-ppc64@0.23.1':
@@ -899,10 +905,10 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.24.0':
- resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
- engines: {node: '>=18'}
- cpu: [ppc64]
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
os: [linux]
'@esbuild/linux-riscv64@0.23.1':
@@ -911,10 +917,10 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.24.0':
- resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
- engines: {node: '>=18'}
- cpu: [riscv64]
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
os: [linux]
'@esbuild/linux-s390x@0.23.1':
@@ -923,10 +929,10 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.24.0':
- resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
- engines: {node: '>=18'}
- cpu: [s390x]
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [linux]
'@esbuild/linux-x64@0.23.1':
@@ -935,11 +941,11 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.24.0':
- resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
- engines: {node: '>=18'}
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
cpu: [x64]
- os: [linux]
+ os: [netbsd]
'@esbuild/netbsd-x64@0.23.1':
resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
@@ -947,22 +953,16 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.24.0':
- resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/openbsd-arm64@0.23.1':
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.24.0':
- resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [openbsd]
'@esbuild/openbsd-x64@0.23.1':
@@ -971,11 +971,11 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.24.0':
- resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
- engines: {node: '>=18'}
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
cpu: [x64]
- os: [openbsd]
+ os: [sunos]
'@esbuild/sunos-x64@0.23.1':
resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
@@ -983,11 +983,11 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.24.0':
- resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
'@esbuild/win32-arm64@0.23.1':
resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
@@ -995,10 +995,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.24.0':
- resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
- engines: {node: '>=18'}
- cpu: [arm64]
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
os: [win32]
'@esbuild/win32-ia32@0.23.1':
@@ -1007,10 +1007,10 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.24.0':
- resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
- engines: {node: '>=18'}
- cpu: [ia32]
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
os: [win32]
'@esbuild/win32-x64@0.23.1':
@@ -1019,12 +1019,6 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.24.0':
- resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1594,34 +1588,34 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@vitest/expect@2.1.6':
- resolution: {integrity: sha512-9M1UR9CAmrhJOMoSwVnPh2rELPKhYo0m/CSgqw9PyStpxtkwhmdM6XYlXGKeYyERY1N6EIuzkQ7e3Lm1WKCoUg==}
+ '@vitest/expect@2.1.7':
+ resolution: {integrity: sha512-folWk4qQDEedgUyvaZw94LIJuNLoDtY+rhKhhNy0csdwifn/pQz8EWVRnyrW3j0wMpy+xwJT8WiwiYxk+i+s7w==}
- '@vitest/mocker@2.1.6':
- resolution: {integrity: sha512-MHZp2Z+Q/A3am5oD4WSH04f9B0T7UvwEb+v5W0kCYMhtXGYbdyl2NUk1wdSMqGthmhpiThPDp/hEoVwu16+u1A==}
+ '@vitest/mocker@2.1.7':
+ resolution: {integrity: sha512-nKMTnuJrarFH+7llWxeLmYRldIwTY3OM1DzdytHj0f2+fah6Cyk4XbswhjOiTCnAvXsZAEoo1OaD6rneSSU+3Q==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@2.1.6':
- resolution: {integrity: sha512-exZyLcEnHgDMKc54TtHca4McV4sKT+NKAe9ix/yhd/qkYb/TP8HTyXRFDijV19qKqTZM0hPL4753zU/U8L/gAA==}
+ '@vitest/pretty-format@2.1.7':
+ resolution: {integrity: sha512-HoqRIyfQlXPrRDB43h0lC8eHPUDPwFweMaD6t+psOvwClCC+oZZim6wPMjuoMnRdiFxXqbybg/QbuewgTwK1vA==}
- '@vitest/runner@2.1.6':
- resolution: {integrity: sha512-SjkRGSFyrA82m5nz7To4CkRSEVWn/rwQISHoia/DB8c6IHIhaE/UNAo+7UfeaeJRE979XceGl00LNkIz09RFsA==}
+ '@vitest/runner@2.1.7':
+ resolution: {integrity: sha512-MrDNpXUIXksR57qipYh068SOX4N1hVw6oVILlTlfeTyA1rp0asuljyp15IZwKqhjpWLObFj+tiNrOM4R8UnSqg==}
- '@vitest/snapshot@2.1.6':
- resolution: {integrity: sha512-5JTWHw8iS9l3v4/VSuthCndw1lN/hpPB+mlgn1BUhFbobeIUj1J1V/Bj2t2ovGEmkXLTckFjQddsxS5T6LuVWw==}
+ '@vitest/snapshot@2.1.7':
+ resolution: {integrity: sha512-OioIxV/xS393DKdlkRNhmtY0K37qVdCv8w1M2SlLTBSX+fNK6zgcd01VlT1nXdbKVDaB8Zb6BOfQYYoGeGTEGg==}
- '@vitest/spy@2.1.6':
- resolution: {integrity: sha512-oTFObV8bd4SDdRka5O+mSh5w9irgx5IetrD5i+OsUUsk/shsBoHifwCzy45SAORzAhtNiprUVaK3hSCCzZh1jQ==}
+ '@vitest/spy@2.1.7':
+ resolution: {integrity: sha512-e5pzIaIC0LBrb/j1FaF7HXlPJLGtltiAkwXTMqNEHALJc7USSLEwziJ+aIWTmjsWNg89zazg37h7oZITnublsQ==}
- '@vitest/utils@2.1.6':
- resolution: {integrity: sha512-ixNkFy3k4vokOUTU2blIUvOgKq/N2PW8vKIjZZYsGJCMX69MRa9J2sKqX5hY/k5O5Gty3YJChepkqZ3KM9LyIQ==}
+ '@vitest/utils@2.1.7':
+ resolution: {integrity: sha512-7gUdvIzCCuIrMZu0WHTvDJo8C1NsUtOqmwmcS3bRHUcfHemj29wmkzLVNuWQD7WHoBD/+I7WIgrnzt7kxR54ow==}
'@wdio/cli@9.4.1':
resolution: {integrity: sha512-GDyAer63WDsr2ckXmrpUyAcIZFd3pCRIpi85rL1ZjnWthRy/UtwY0EHPMDuSeUEJ28iYwW3esKgq2ZKlsdbMeA==}
@@ -1959,8 +1953,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001684:
- resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==}
+ caniuse-lite@1.0.30001685:
+ resolution: {integrity: sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==}
chai@5.1.2:
resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
@@ -2343,13 +2337,13 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- esbuild@0.23.1:
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
- engines: {node: '>=18'}
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
hasBin: true
- esbuild@0.24.0:
- resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
engines: {node: '>=18'}
hasBin: true
@@ -2783,8 +2777,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.12.0:
- resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
+ globals@15.13.0:
+ resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -2818,8 +2812,8 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ has-proto@1.1.0:
+ resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==}
engines: {node: '>= 0.4'}
has-symbols@1.0.3:
@@ -2941,8 +2935,8 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ is-boolean-object@1.2.0:
+ resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==}
engines: {node: '>= 0.4'}
is-callable@1.2.7:
@@ -2989,8 +2983,8 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ is-number-object@1.1.0:
+ resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -3029,8 +3023,8 @@ packages:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
- is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ is-string@1.1.0:
+ resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==}
engines: {node: '>= 0.4'}
is-symbol@1.0.4:
@@ -4127,8 +4121,8 @@ packages:
resolution: {integrity: sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw==}
engines: {node: '>=16'}
- type-fest@4.29.0:
- resolution: {integrity: sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==}
+ type-fest@4.29.1:
+ resolution: {integrity: sha512-Y1zUveI92UYM/vo1EFlQSsNf74+hfKH+7saZJslF0Fw92FRaiTAnHPIvo9d7SLxXt/gAYqA4RXyDTioMQCCp0A==}
engines: {node: '>=16'}
type-is@1.6.18:
@@ -4254,32 +4248,27 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite-node@2.1.6:
- resolution: {integrity: sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==}
+ vite-node@2.1.7:
+ resolution: {integrity: sha512-b/5MxSWd0ftWt1B1LHfzCw0ASzaxHztUwP0rcsBhkDSGy9ZDEDieSIjFG3I78nI9dUN0eSeD6LtuKPZGjwwpZQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite@6.0.1:
- resolution: {integrity: sha512-Ldn6gorLGr4mCdFnmeAOLweJxZ34HjKnDm4HGo6P66IEqTxQb36VEdFJQENKxWjupNfoIjvRUnswjn1hpYEpjQ==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vite@5.4.11:
+ resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
lightningcss: ^1.21.0
sass: '*'
sass-embedded: '*'
stylus: '*'
sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
+ terser: ^5.4.0
peerDependenciesMeta:
'@types/node':
optional: true
- jiti:
- optional: true
less:
optional: true
lightningcss:
@@ -4294,20 +4283,16 @@ packages:
optional: true
terser:
optional: true
- tsx:
- optional: true
- yaml:
- optional: true
- vitest@2.1.6:
- resolution: {integrity: sha512-isUCkvPL30J4c5O5hgONeFRsDmlw6kzFEdLQHLezmDdKQHy8Ke/B/dgdTMEgU0vm+iZ0TjW8GuK83DiahBoKWQ==}
+ vitest@2.1.7:
+ resolution: {integrity: sha512-wzJ7Wri44ufkzTZbI1lHsdHfiGdFRmnJ9qIudDQ6tknjJeHhF5QgNSSjk7KRZUU535qEiEXFJ7tSHqyzyIv0jQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 2.1.6
- '@vitest/ui': 2.1.6
+ '@vitest/browser': 2.1.7
+ '@vitest/ui': 2.1.7
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -5330,150 +5315,147 @@ snapshots:
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
'@esbuild/aix-ppc64@0.23.1':
optional: true
- '@esbuild/aix-ppc64@0.24.0':
+ '@esbuild/android-arm64@0.21.5':
optional: true
'@esbuild/android-arm64@0.23.1':
optional: true
- '@esbuild/android-arm64@0.24.0':
+ '@esbuild/android-arm@0.21.5':
optional: true
'@esbuild/android-arm@0.23.1':
optional: true
- '@esbuild/android-arm@0.24.0':
+ '@esbuild/android-x64@0.21.5':
optional: true
'@esbuild/android-x64@0.23.1':
optional: true
- '@esbuild/android-x64@0.24.0':
+ '@esbuild/darwin-arm64@0.21.5':
optional: true
'@esbuild/darwin-arm64@0.23.1':
optional: true
- '@esbuild/darwin-arm64@0.24.0':
+ '@esbuild/darwin-x64@0.21.5':
optional: true
'@esbuild/darwin-x64@0.23.1':
optional: true
- '@esbuild/darwin-x64@0.24.0':
+ '@esbuild/freebsd-arm64@0.21.5':
optional: true
'@esbuild/freebsd-arm64@0.23.1':
optional: true
- '@esbuild/freebsd-arm64@0.24.0':
+ '@esbuild/freebsd-x64@0.21.5':
optional: true
'@esbuild/freebsd-x64@0.23.1':
optional: true
- '@esbuild/freebsd-x64@0.24.0':
+ '@esbuild/linux-arm64@0.21.5':
optional: true
'@esbuild/linux-arm64@0.23.1':
optional: true
- '@esbuild/linux-arm64@0.24.0':
+ '@esbuild/linux-arm@0.21.5':
optional: true
'@esbuild/linux-arm@0.23.1':
optional: true
- '@esbuild/linux-arm@0.24.0':
+ '@esbuild/linux-ia32@0.21.5':
optional: true
'@esbuild/linux-ia32@0.23.1':
optional: true
- '@esbuild/linux-ia32@0.24.0':
+ '@esbuild/linux-loong64@0.21.5':
optional: true
'@esbuild/linux-loong64@0.23.1':
optional: true
- '@esbuild/linux-loong64@0.24.0':
+ '@esbuild/linux-mips64el@0.21.5':
optional: true
'@esbuild/linux-mips64el@0.23.1':
optional: true
- '@esbuild/linux-mips64el@0.24.0':
+ '@esbuild/linux-ppc64@0.21.5':
optional: true
'@esbuild/linux-ppc64@0.23.1':
optional: true
- '@esbuild/linux-ppc64@0.24.0':
+ '@esbuild/linux-riscv64@0.21.5':
optional: true
'@esbuild/linux-riscv64@0.23.1':
optional: true
- '@esbuild/linux-riscv64@0.24.0':
+ '@esbuild/linux-s390x@0.21.5':
optional: true
'@esbuild/linux-s390x@0.23.1':
optional: true
- '@esbuild/linux-s390x@0.24.0':
+ '@esbuild/linux-x64@0.21.5':
optional: true
'@esbuild/linux-x64@0.23.1':
optional: true
- '@esbuild/linux-x64@0.24.0':
+ '@esbuild/netbsd-x64@0.21.5':
optional: true
'@esbuild/netbsd-x64@0.23.1':
optional: true
- '@esbuild/netbsd-x64@0.24.0':
- optional: true
-
'@esbuild/openbsd-arm64@0.23.1':
optional: true
- '@esbuild/openbsd-arm64@0.24.0':
+ '@esbuild/openbsd-x64@0.21.5':
optional: true
'@esbuild/openbsd-x64@0.23.1':
optional: true
- '@esbuild/openbsd-x64@0.24.0':
+ '@esbuild/sunos-x64@0.21.5':
optional: true
'@esbuild/sunos-x64@0.23.1':
optional: true
- '@esbuild/sunos-x64@0.24.0':
+ '@esbuild/win32-arm64@0.21.5':
optional: true
'@esbuild/win32-arm64@0.23.1':
optional: true
- '@esbuild/win32-arm64@0.24.0':
+ '@esbuild/win32-ia32@0.21.5':
optional: true
'@esbuild/win32-ia32@0.23.1':
optional: true
- '@esbuild/win32-ia32@0.24.0':
+ '@esbuild/win32-x64@0.21.5':
optional: true
'@esbuild/win32-x64@0.23.1':
optional: true
- '@esbuild/win32-x64@0.24.0':
- optional: true
-
'@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
@@ -6086,50 +6068,50 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@vitest/expect@2.1.6':
+ '@vitest/expect@2.1.7':
dependencies:
- '@vitest/spy': 2.1.6
- '@vitest/utils': 2.1.6
+ '@vitest/spy': 2.1.7
+ '@vitest/utils': 2.1.7
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.6(vite@6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2))':
+ '@vitest/mocker@2.1.7(vite@5.4.11(@types/node@22.10.1))':
dependencies:
- '@vitest/spy': 2.1.6
+ '@vitest/spy': 2.1.7
estree-walker: 3.0.3
magic-string: 0.30.14
optionalDependencies:
- vite: 6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2)
+ vite: 5.4.11(@types/node@22.10.1)
- '@vitest/pretty-format@2.1.6':
+ '@vitest/pretty-format@2.1.7':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.6':
+ '@vitest/runner@2.1.7':
dependencies:
- '@vitest/utils': 2.1.6
+ '@vitest/utils': 2.1.7
pathe: 1.1.2
- '@vitest/snapshot@2.1.6':
+ '@vitest/snapshot@2.1.7':
dependencies:
- '@vitest/pretty-format': 2.1.6
+ '@vitest/pretty-format': 2.1.7
magic-string: 0.30.14
pathe: 1.1.2
- '@vitest/spy@2.1.6':
+ '@vitest/spy@2.1.7':
dependencies:
tinyspy: 3.0.2
- '@vitest/utils@2.1.6':
+ '@vitest/utils@2.1.7':
dependencies:
- '@vitest/pretty-format': 2.1.6
+ '@vitest/pretty-format': 2.1.7
loupe: 3.1.2
tinyrainbow: 1.2.0
'@wdio/cli@9.4.1(puppeteer-core@23.9.0)':
dependencies:
'@types/node': 20.17.9
- '@vitest/snapshot': 2.1.6
+ '@vitest/snapshot': 2.1.7
'@wdio/config': 9.2.8
'@wdio/globals': 9.4.1(@wdio/logger@9.1.3)(puppeteer-core@23.9.0)
'@wdio/logger': 9.1.3
@@ -6401,7 +6383,7 @@ snapshots:
es-abstract: 1.23.5
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
- is-string: 1.0.7
+ is-string: 1.1.0
array-union@2.1.0: {}
@@ -6573,7 +6555,7 @@ snapshots:
browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001684
+ caniuse-lite: 1.0.30001685
electron-to-chromium: 1.5.67
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
@@ -6610,7 +6592,7 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001684: {}
+ caniuse-lite@1.0.30001685: {}
chai@5.1.2:
dependencies:
@@ -6985,7 +6967,7 @@ snapshots:
globalthis: 1.0.4
gopd: 1.1.0
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
+ has-proto: 1.1.0
has-symbols: 1.0.3
hasown: 2.0.2
internal-slot: 1.0.7
@@ -6995,7 +6977,7 @@ snapshots:
is-negative-zero: 2.0.3
is-regex: 1.2.0
is-shared-array-buffer: 1.0.3
- is-string: 1.0.7
+ is-string: 1.1.0
is-typed-array: 1.1.13
is-weakref: 1.0.2
object-inspect: 1.13.3
@@ -7028,7 +7010,7 @@ snapshots:
is-arguments: 1.1.1
is-map: 2.0.3
is-set: 2.0.3
- is-string: 1.0.7
+ is-string: 1.1.0
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
@@ -7044,7 +7026,7 @@ snapshots:
globalthis: 1.0.4
gopd: 1.1.0
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
+ has-proto: 1.1.0
has-symbols: 1.0.3
internal-slot: 1.0.7
iterator.prototype: 1.1.3
@@ -7072,6 +7054,32 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
esbuild@0.23.1:
optionalDependencies:
'@esbuild/aix-ppc64': 0.23.1
@@ -7099,33 +7107,6 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
- esbuild@0.24.0:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.0
- '@esbuild/android-arm': 0.24.0
- '@esbuild/android-arm64': 0.24.0
- '@esbuild/android-x64': 0.24.0
- '@esbuild/darwin-arm64': 0.24.0
- '@esbuild/darwin-x64': 0.24.0
- '@esbuild/freebsd-arm64': 0.24.0
- '@esbuild/freebsd-x64': 0.24.0
- '@esbuild/linux-arm': 0.24.0
- '@esbuild/linux-arm64': 0.24.0
- '@esbuild/linux-ia32': 0.24.0
- '@esbuild/linux-loong64': 0.24.0
- '@esbuild/linux-mips64el': 0.24.0
- '@esbuild/linux-ppc64': 0.24.0
- '@esbuild/linux-riscv64': 0.24.0
- '@esbuild/linux-s390x': 0.24.0
- '@esbuild/linux-x64': 0.24.0
- '@esbuild/netbsd-x64': 0.24.0
- '@esbuild/openbsd-arm64': 0.24.0
- '@esbuild/openbsd-x64': 0.24.0
- '@esbuild/sunos-x64': 0.24.0
- '@esbuild/win32-arm64': 0.24.0
- '@esbuild/win32-ia32': 0.24.0
- '@esbuild/win32-x64': 0.24.0
-
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -7150,7 +7131,7 @@ snapshots:
eslint-plugin-jsdoc: 50.6.0(eslint@9.16.0(jiti@2.4.0))
eslint-plugin-security: 3.0.1
eslint-plugin-sonarjs: 2.0.4(@typescript-eslint/parser@8.16.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.0))
- globals: 15.12.0
+ globals: 15.13.0
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-typescript
@@ -7483,7 +7464,7 @@ snapshots:
expect-webdriverio@5.0.5(@wdio/globals@9.4.1(@wdio/logger@9.1.3)(puppeteer-core@23.9.0))(@wdio/logger@9.1.3)(webdriverio@9.4.1(puppeteer-core@23.9.0)):
dependencies:
- '@vitest/snapshot': 2.1.6
+ '@vitest/snapshot': 2.1.7
'@wdio/globals': 9.4.1(@wdio/logger@9.1.3)(puppeteer-core@23.9.0)
'@wdio/logger': 9.1.3
expect: 29.7.0
@@ -7705,7 +7686,7 @@ snapshots:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
- has-proto: 1.0.3
+ has-proto: 1.1.0
has-symbols: 1.0.3
hasown: 2.0.2
@@ -7781,7 +7762,7 @@ snapshots:
globals@14.0.0: {}
- globals@15.12.0: {}
+ globals@15.13.0: {}
globalthis@1.0.4:
dependencies:
@@ -7815,7 +7796,9 @@ snapshots:
dependencies:
es-define-property: 1.0.0
- has-proto@1.0.3: {}
+ has-proto@1.1.0:
+ dependencies:
+ call-bind: 1.0.7
has-symbols@1.0.3: {}
@@ -7946,7 +7929,7 @@ snapshots:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.0:
dependencies:
call-bind: 1.0.7
has-tostringtag: 1.0.2
@@ -7985,8 +7968,9 @@ snapshots:
is-negative-zero@2.0.3: {}
- is-number-object@1.0.7:
+ is-number-object@1.1.0:
dependencies:
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -8014,8 +7998,9 @@ snapshots:
is-stream@4.0.1: {}
- is-string@1.0.7:
+ is-string@1.1.0:
dependencies:
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
is-symbol@1.0.4:
@@ -8675,14 +8660,14 @@ snapshots:
dependencies:
find-up: 6.3.0
read-pkg: 8.1.0
- type-fest: 4.29.0
+ type-fest: 4.29.1
read-pkg@8.1.0:
dependencies:
'@types/normalize-package-data': 2.4.4
normalize-package-data: 6.0.2
parse-json: 7.1.1
- type-fest: 4.29.0
+ type-fest: 4.29.1
readable-stream@2.3.8:
dependencies:
@@ -9209,7 +9194,7 @@ snapshots:
type-fest@4.26.0: {}
- type-fest@4.29.0: {}
+ type-fest@4.29.1: {}
type-is@1.6.18:
dependencies:
@@ -9227,7 +9212,7 @@ snapshots:
call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.1.0
- has-proto: 1.0.3
+ has-proto: 1.1.0
is-typed-array: 1.1.13
typed-array-byte-offset@1.0.3:
@@ -9236,7 +9221,7 @@ snapshots:
call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.1.0
- has-proto: 1.0.3
+ has-proto: 1.1.0
is-typed-array: 1.1.13
reflect.getprototypeof: 1.0.7
@@ -9330,16 +9315,15 @@ snapshots:
vary@1.1.2: {}
- vite-node@2.1.6(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2):
+ vite-node@2.1.7(@types/node@22.10.1):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@8.1.1)
es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2)
+ vite: 5.4.11(@types/node@22.10.1)
transitivePeerDependencies:
- '@types/node'
- - jiti
- less
- lightningcss
- sass
@@ -9348,29 +9332,25 @@ snapshots:
- sugarss
- supports-color
- terser
- - tsx
- - yaml
- vite@6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2):
+ vite@5.4.11(@types/node@22.10.1):
dependencies:
- esbuild: 0.24.0
+ esbuild: 0.21.5
postcss: 8.4.49
rollup: 4.28.0
optionalDependencies:
'@types/node': 22.10.1
fsevents: 2.3.3
- jiti: 2.4.0
- tsx: 4.19.2
- vitest@2.1.6(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2):
+ vitest@2.1.7(@types/node@22.10.1):
dependencies:
- '@vitest/expect': 2.1.6
- '@vitest/mocker': 2.1.6(vite@6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2))
- '@vitest/pretty-format': 2.1.6
- '@vitest/runner': 2.1.6
- '@vitest/snapshot': 2.1.6
- '@vitest/spy': 2.1.6
- '@vitest/utils': 2.1.6
+ '@vitest/expect': 2.1.7
+ '@vitest/mocker': 2.1.7(vite@5.4.11(@types/node@22.10.1))
+ '@vitest/pretty-format': 2.1.7
+ '@vitest/runner': 2.1.7
+ '@vitest/snapshot': 2.1.7
+ '@vitest/spy': 2.1.7
+ '@vitest/utils': 2.1.7
chai: 5.1.2
debug: 4.3.7(supports-color@8.1.1)
expect-type: 1.1.0
@@ -9381,13 +9361,12 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 6.0.1(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2)
- vite-node: 2.1.6(@types/node@22.10.1)(jiti@2.4.0)(tsx@4.19.2)
+ vite: 5.4.11(@types/node@22.10.1)
+ vite-node: 2.1.7(@types/node@22.10.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.10.1
transitivePeerDependencies:
- - jiti
- less
- lightningcss
- msw
@@ -9397,8 +9376,6 @@ snapshots:
- sugarss
- supports-color
- terser
- - tsx
- - yaml
vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.0)):
dependencies:
@@ -9494,9 +9471,9 @@ snapshots:
which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
+ is-boolean-object: 1.2.0
+ is-number-object: 1.1.0
+ is-string: 1.1.0
is-symbol: 1.0.4
which-builtin-type@1.2.0: