lint rules added and fixed

This commit is contained in:
Dustin Loring 2024-12-02 06:06:17 -05:00
parent aef26f1c68
commit 87620f38be
8 changed files with 127 additions and 117 deletions

View File

@ -283,7 +283,9 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
> >
<textarea <textarea
ref={textareaRef} ref={textareaRef}
className={`w-full pl-4 pt-4 pr-16 focus:outline-none resize-none text-bolt-elements-textPrimary placeholder-bolt-elements-textTertiary bg-transparent text-sm`} className={
'w-full pl-4 pt-4 pr-16 focus:outline-none resize-none text-bolt-elements-textPrimary placeholder-bolt-elements-textTertiary bg-transparent text-sm'
}
onKeyDown={(event) => { onKeyDown={(event) => {
if (event.key === 'Enter') { if (event.key === 'Enter') {
if (event.shiftKey) { if (event.shiftKey) {
@ -351,8 +353,8 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
{input.length > 3 ? ( {input.length > 3 ? (
<div className="text-xs text-bolt-elements-textTertiary"> <div className="text-xs text-bolt-elements-textTertiary">
Use <kbd className="kdb px-1.5 py-0.5 rounded bg-bolt-elements-background-depth-2">Shift</kbd> +{' '} Use <kbd className="kdb px-1.5 py-0.5 rounded bg-bolt-elements-background-depth-2">Shift</kbd> +{' '}
<kbd className="kdb px-1.5 py-0.5 rounded bg-bolt-elements-background-depth-2">Return</kbd> for <kbd className="kdb px-1.5 py-0.5 rounded bg-bolt-elements-background-depth-2">Return</kbd> a
a new line new line
</div> </div>
) : null} ) : null}
</div> </div>

View File

@ -43,7 +43,7 @@ export default async function handleRequest(
.read() .read()
.then(({ done, value }) => { .then(({ done, value }) => {
if (done) { if (done) {
controller.enqueue(new Uint8Array(new TextEncoder().encode(`</div></body></html>`))); controller.enqueue(new Uint8Array(new TextEncoder().encode('</div></body></html>')));
controller.close(); controller.close();
return; return;

View File

@ -43,7 +43,7 @@ export function useChatHistory() {
setReady(true); setReady(true);
if (persistenceEnabled) { if (persistenceEnabled) {
toast.error(`Chat persistence is unavailable`); toast.error('Chat persistence is unavailable');
} }
return; return;
@ -63,7 +63,7 @@ export function useChatHistory() {
description.set(storedMessages.description); description.set(storedMessages.description);
chatId.set(storedMessages.id); chatId.set(storedMessages.id);
} else { } else {
navigate(`/`, { replace: true }); navigate('/', { replace: true });
} }
setReady(true); setReady(true);

View File

@ -378,7 +378,9 @@ export class WorkbenchStore {
} }
// create or get the file // create or get the file
const fileHandle = await currentHandle.getFileHandle(pathSegments[pathSegments.length - 1], { create: true }); const fileHandle = await currentHandle.getFileHandle(pathSegments[pathSegments.length - 1], {
create: true,
});
// write the file content // write the file content
const writable = await fileHandle.createWritable(); const writable = await fileHandle.createWritable();

View File

@ -20,6 +20,12 @@ export default [
'@typescript-eslint/no-empty-object-type': 'off', '@typescript-eslint/no-empty-object-type': 'off',
'@blitz/comment-syntax': 'off', '@blitz/comment-syntax': 'off',
'@blitz/block-scope-case': 'off', '@blitz/block-scope-case': 'off',
'array-bracket-spacing': ["error", "never"],
'object-curly-newline': ["error", { "consistent": true }],
'keyword-spacing': ["error", { "before": true, "after": true }],
'consistent-return': "error",
'semi': ["error", "always"],
'arrow-spacing': ["error", { "before": true, "after": true }]
}, },
}, },
{ {

110
package-lock.json generated
View File

@ -5338,14 +5338,14 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@vitest/expect": { "node_modules/@vitest/expect": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.7.tgz",
"integrity": "sha512-9M1UR9CAmrhJOMoSwVnPh2rELPKhYo0m/CSgqw9PyStpxtkwhmdM6XYlXGKeYyERY1N6EIuzkQ7e3Lm1WKCoUg==", "integrity": "sha512-folWk4qQDEedgUyvaZw94LIJuNLoDtY+rhKhhNy0csdwifn/pQz8EWVRnyrW3j0wMpy+xwJT8WiwiYxk+i+s7w==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/spy": "2.1.6", "@vitest/spy": "2.1.7",
"@vitest/utils": "2.1.6", "@vitest/utils": "2.1.7",
"chai": "^5.1.2", "chai": "^5.1.2",
"tinyrainbow": "^1.2.0" "tinyrainbow": "^1.2.0"
}, },
@ -5354,13 +5354,13 @@
} }
}, },
"node_modules/@vitest/mocker": { "node_modules/@vitest/mocker": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.7.tgz",
"integrity": "sha512-MHZp2Z+Q/A3am5oD4WSH04f9B0T7UvwEb+v5W0kCYMhtXGYbdyl2NUk1wdSMqGthmhpiThPDp/hEoVwu16+u1A==", "integrity": "sha512-nKMTnuJrarFH+7llWxeLmYRldIwTY3OM1DzdytHj0f2+fah6Cyk4XbswhjOiTCnAvXsZAEoo1OaD6rneSSU+3Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/spy": "2.1.6", "@vitest/spy": "2.1.7",
"estree-walker": "^3.0.3", "estree-walker": "^3.0.3",
"magic-string": "^0.30.12" "magic-string": "^0.30.12"
}, },
@ -5369,7 +5369,7 @@
}, },
"peerDependencies": { "peerDependencies": {
"msw": "^2.4.9", "msw": "^2.4.9",
"vite": "^5.0.0 || ^6.0.0" "vite": "^5.0.0"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"msw": { "msw": {
@ -5381,9 +5381,9 @@
} }
}, },
"node_modules/@vitest/pretty-format": { "node_modules/@vitest/pretty-format": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.7.tgz",
"integrity": "sha512-exZyLcEnHgDMKc54TtHca4McV4sKT+NKAe9ix/yhd/qkYb/TP8HTyXRFDijV19qKqTZM0hPL4753zU/U8L/gAA==", "integrity": "sha512-HoqRIyfQlXPrRDB43h0lC8eHPUDPwFweMaD6t+psOvwClCC+oZZim6wPMjuoMnRdiFxXqbybg/QbuewgTwK1vA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
@ -5394,13 +5394,13 @@
} }
}, },
"node_modules/@vitest/runner": { "node_modules/@vitest/runner": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.7.tgz",
"integrity": "sha512-SjkRGSFyrA82m5nz7To4CkRSEVWn/rwQISHoia/DB8c6IHIhaE/UNAo+7UfeaeJRE979XceGl00LNkIz09RFsA==", "integrity": "sha512-MrDNpXUIXksR57qipYh068SOX4N1hVw6oVILlTlfeTyA1rp0asuljyp15IZwKqhjpWLObFj+tiNrOM4R8UnSqg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/utils": "2.1.6", "@vitest/utils": "2.1.7",
"pathe": "^1.1.2" "pathe": "^1.1.2"
}, },
"funding": { "funding": {
@ -5408,13 +5408,13 @@
} }
}, },
"node_modules/@vitest/snapshot": { "node_modules/@vitest/snapshot": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.7.tgz",
"integrity": "sha512-5JTWHw8iS9l3v4/VSuthCndw1lN/hpPB+mlgn1BUhFbobeIUj1J1V/Bj2t2ovGEmkXLTckFjQddsxS5T6LuVWw==", "integrity": "sha512-OioIxV/xS393DKdlkRNhmtY0K37qVdCv8w1M2SlLTBSX+fNK6zgcd01VlT1nXdbKVDaB8Zb6BOfQYYoGeGTEGg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/pretty-format": "2.1.6", "@vitest/pretty-format": "2.1.7",
"magic-string": "^0.30.12", "magic-string": "^0.30.12",
"pathe": "^1.1.2" "pathe": "^1.1.2"
}, },
@ -5423,9 +5423,9 @@
} }
}, },
"node_modules/@vitest/spy": { "node_modules/@vitest/spy": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.7.tgz",
"integrity": "sha512-oTFObV8bd4SDdRka5O+mSh5w9irgx5IetrD5i+OsUUsk/shsBoHifwCzy45SAORzAhtNiprUVaK3hSCCzZh1jQ==", "integrity": "sha512-e5pzIaIC0LBrb/j1FaF7HXlPJLGtltiAkwXTMqNEHALJc7USSLEwziJ+aIWTmjsWNg89zazg37h7oZITnublsQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
@ -5436,13 +5436,13 @@
} }
}, },
"node_modules/@vitest/utils": { "node_modules/@vitest/utils": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.6.tgz", "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.7.tgz",
"integrity": "sha512-ixNkFy3k4vokOUTU2blIUvOgKq/N2PW8vKIjZZYsGJCMX69MRa9J2sKqX5hY/k5O5Gty3YJChepkqZ3KM9LyIQ==", "integrity": "sha512-7gUdvIzCCuIrMZu0WHTvDJo8C1NsUtOqmwmcS3bRHUcfHemj29wmkzLVNuWQD7WHoBD/+I7WIgrnzt7kxR54ow==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/pretty-format": "2.1.6", "@vitest/pretty-format": "2.1.7",
"loupe": "^3.1.2", "loupe": "^3.1.2",
"tinyrainbow": "^1.2.0" "tinyrainbow": "^1.2.0"
}, },
@ -6449,9 +6449,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001684", "version": "1.0.30001685",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001685.tgz",
"integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==", "integrity": "sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {
@ -22301,9 +22301,9 @@
} }
}, },
"node_modules/svelte": { "node_modules/svelte": {
"version": "5.3.0", "version": "5.3.1",
"resolved": "https://registry.npmjs.org/svelte/-/svelte-5.3.0.tgz", "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.3.1.tgz",
"integrity": "sha512-R9v8vAlW/bO94S7QdBJMYveMyI8gMqNnGOtEVLPveNVws+CEiQHn8BNWrtIIpkB28IXLnmjV2HaRTJz31XJmIw==", "integrity": "sha512-Y6PXppQhIZZ0HLZKj6UMV/VZPJbHiK98K8A5M7mJ+PGrz4erUmuDRUa8l7aw4La++Vl51YWzLUuuB0FZ7JPfnw==",
"license": "MIT", "license": "MIT",
"peer": true, "peer": true,
"dependencies": { "dependencies": {
@ -23184,9 +23184,9 @@
} }
}, },
"node_modules/type-fest": { "node_modules/type-fest": {
"version": "4.29.0", "version": "4.29.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.1.tgz",
"integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==", "integrity": "sha512-Y1zUveI92UYM/vo1EFlQSsNf74+hfKH+7saZJslF0Fw92FRaiTAnHPIvo9d7SLxXt/gAYqA4RXyDTioMQCCp0A==",
"license": "(MIT OR CC0-1.0)", "license": "(MIT OR CC0-1.0)",
"engines": { "engines": {
"node": ">=16" "node": ">=16"
@ -24521,19 +24521,19 @@
} }
}, },
"node_modules/vitest": { "node_modules/vitest": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.6.tgz", "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.7.tgz",
"integrity": "sha512-isUCkvPL30J4c5O5hgONeFRsDmlw6kzFEdLQHLezmDdKQHy8Ke/B/dgdTMEgU0vm+iZ0TjW8GuK83DiahBoKWQ==", "integrity": "sha512-wzJ7Wri44ufkzTZbI1lHsdHfiGdFRmnJ9qIudDQ6tknjJeHhF5QgNSSjk7KRZUU535qEiEXFJ7tSHqyzyIv0jQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@vitest/expect": "2.1.6", "@vitest/expect": "2.1.7",
"@vitest/mocker": "2.1.6", "@vitest/mocker": "2.1.7",
"@vitest/pretty-format": "^2.1.6", "@vitest/pretty-format": "^2.1.7",
"@vitest/runner": "2.1.6", "@vitest/runner": "2.1.7",
"@vitest/snapshot": "2.1.6", "@vitest/snapshot": "2.1.7",
"@vitest/spy": "2.1.6", "@vitest/spy": "2.1.7",
"@vitest/utils": "2.1.6", "@vitest/utils": "2.1.7",
"chai": "^5.1.2", "chai": "^5.1.2",
"debug": "^4.3.7", "debug": "^4.3.7",
"expect-type": "^1.1.0", "expect-type": "^1.1.0",
@ -24544,8 +24544,8 @@
"tinyexec": "^0.3.1", "tinyexec": "^0.3.1",
"tinypool": "^1.0.1", "tinypool": "^1.0.1",
"tinyrainbow": "^1.2.0", "tinyrainbow": "^1.2.0",
"vite": "^5.0.0 || ^6.0.0", "vite": "^5.0.0",
"vite-node": "2.1.6", "vite-node": "2.1.7",
"why-is-node-running": "^2.3.0" "why-is-node-running": "^2.3.0"
}, },
"bin": { "bin": {
@ -24560,8 +24560,8 @@
"peerDependencies": { "peerDependencies": {
"@edge-runtime/vm": "*", "@edge-runtime/vm": "*",
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
"@vitest/browser": "2.1.6", "@vitest/browser": "2.1.7",
"@vitest/ui": "2.1.6", "@vitest/ui": "2.1.7",
"happy-dom": "*", "happy-dom": "*",
"jsdom": "*" "jsdom": "*"
}, },
@ -24587,9 +24587,9 @@
} }
}, },
"node_modules/vitest/node_modules/vite-node": { "node_modules/vitest/node_modules/vite-node": {
"version": "2.1.6", "version": "2.1.7",
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.6.tgz", "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.7.tgz",
"integrity": "sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==", "integrity": "sha512-b/5MxSWd0ftWt1B1LHfzCw0ASzaxHztUwP0rcsBhkDSGy9ZDEDieSIjFG3I78nI9dUN0eSeD6LtuKPZGjwwpZQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
@ -24597,7 +24597,7 @@
"debug": "^4.3.7", "debug": "^4.3.7",
"es-module-lexer": "^1.5.4", "es-module-lexer": "^1.5.4",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"vite": "^5.0.0 || ^6.0.0" "vite": "^5.0.0"
}, },
"bin": { "bin": {
"vite-node": "vite-node.mjs" "vite-node": "vite-node.mjs"

View File

@ -118,7 +118,7 @@
"vite-plugin-node-polyfills": "^0.22.0", "vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-optimize-css-modules": "^1.1.0", "vite-plugin-optimize-css-modules": "^1.1.0",
"vite-tsconfig-paths": "^4.3.2", "vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.6", "vitest": "^2.1.7",
"wrangler": "^3.91.0", "wrangler": "^3.91.0",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },

View File

@ -274,8 +274,8 @@ importers:
specifier: ^4.3.2 specifier: ^4.3.2
version: 4.3.2(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)) version: 4.3.2(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6))
vitest: vitest:
specifier: ^2.1.6 specifier: ^2.1.7
version: 2.1.6(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6) version: 2.1.7(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)
wrangler: wrangler:
specifier: ^3.91.0 specifier: ^3.91.0
version: 3.91.0(@cloudflare/workers-types@4.20241127.0) version: 3.91.0(@cloudflare/workers-types@4.20241127.0)
@ -2269,34 +2269,34 @@ packages:
'@vanilla-extract/private@1.0.6': '@vanilla-extract/private@1.0.6':
resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==}
'@vitest/expect@2.1.6': '@vitest/expect@2.1.7':
resolution: {integrity: sha512-9M1UR9CAmrhJOMoSwVnPh2rELPKhYo0m/CSgqw9PyStpxtkwhmdM6XYlXGKeYyERY1N6EIuzkQ7e3Lm1WKCoUg==} resolution: {integrity: sha512-folWk4qQDEedgUyvaZw94LIJuNLoDtY+rhKhhNy0csdwifn/pQz8EWVRnyrW3j0wMpy+xwJT8WiwiYxk+i+s7w==}
'@vitest/mocker@2.1.6': '@vitest/mocker@2.1.7':
resolution: {integrity: sha512-MHZp2Z+Q/A3am5oD4WSH04f9B0T7UvwEb+v5W0kCYMhtXGYbdyl2NUk1wdSMqGthmhpiThPDp/hEoVwu16+u1A==} resolution: {integrity: sha512-nKMTnuJrarFH+7llWxeLmYRldIwTY3OM1DzdytHj0f2+fah6Cyk4XbswhjOiTCnAvXsZAEoo1OaD6rneSSU+3Q==}
peerDependencies: peerDependencies:
msw: ^2.4.9 msw: ^2.4.9
vite: ^5.0.0 || ^6.0.0 vite: ^5.0.0
peerDependenciesMeta: peerDependenciesMeta:
msw: msw:
optional: true optional: true
vite: vite:
optional: true optional: true
'@vitest/pretty-format@2.1.6': '@vitest/pretty-format@2.1.7':
resolution: {integrity: sha512-exZyLcEnHgDMKc54TtHca4McV4sKT+NKAe9ix/yhd/qkYb/TP8HTyXRFDijV19qKqTZM0hPL4753zU/U8L/gAA==} resolution: {integrity: sha512-HoqRIyfQlXPrRDB43h0lC8eHPUDPwFweMaD6t+psOvwClCC+oZZim6wPMjuoMnRdiFxXqbybg/QbuewgTwK1vA==}
'@vitest/runner@2.1.6': '@vitest/runner@2.1.7':
resolution: {integrity: sha512-SjkRGSFyrA82m5nz7To4CkRSEVWn/rwQISHoia/DB8c6IHIhaE/UNAo+7UfeaeJRE979XceGl00LNkIz09RFsA==} resolution: {integrity: sha512-MrDNpXUIXksR57qipYh068SOX4N1hVw6oVILlTlfeTyA1rp0asuljyp15IZwKqhjpWLObFj+tiNrOM4R8UnSqg==}
'@vitest/snapshot@2.1.6': '@vitest/snapshot@2.1.7':
resolution: {integrity: sha512-5JTWHw8iS9l3v4/VSuthCndw1lN/hpPB+mlgn1BUhFbobeIUj1J1V/Bj2t2ovGEmkXLTckFjQddsxS5T6LuVWw==} resolution: {integrity: sha512-OioIxV/xS393DKdlkRNhmtY0K37qVdCv8w1M2SlLTBSX+fNK6zgcd01VlT1nXdbKVDaB8Zb6BOfQYYoGeGTEGg==}
'@vitest/spy@2.1.6': '@vitest/spy@2.1.7':
resolution: {integrity: sha512-oTFObV8bd4SDdRka5O+mSh5w9irgx5IetrD5i+OsUUsk/shsBoHifwCzy45SAORzAhtNiprUVaK3hSCCzZh1jQ==} resolution: {integrity: sha512-e5pzIaIC0LBrb/j1FaF7HXlPJLGtltiAkwXTMqNEHALJc7USSLEwziJ+aIWTmjsWNg89zazg37h7oZITnublsQ==}
'@vitest/utils@2.1.6': '@vitest/utils@2.1.7':
resolution: {integrity: sha512-ixNkFy3k4vokOUTU2blIUvOgKq/N2PW8vKIjZZYsGJCMX69MRa9J2sKqX5hY/k5O5Gty3YJChepkqZ3KM9LyIQ==} resolution: {integrity: sha512-7gUdvIzCCuIrMZu0WHTvDJo8C1NsUtOqmwmcS3bRHUcfHemj29wmkzLVNuWQD7WHoBD/+I7WIgrnzt7kxR54ow==}
'@vue/compiler-core@3.4.30': '@vue/compiler-core@3.4.30':
resolution: {integrity: sha512-ZL8y4Xxdh8O6PSwfdZ1IpQ24PjTAieOz3jXb/MDTfDtANcKBMxg1KLm6OX2jofsaQGYfIVzd3BAG22i56/cF1w==} resolution: {integrity: sha512-ZL8y4Xxdh8O6PSwfdZ1IpQ24PjTAieOz3jXb/MDTfDtANcKBMxg1KLm6OX2jofsaQGYfIVzd3BAG22i56/cF1w==}
@ -2582,8 +2582,8 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'} engines: {node: '>=6'}
caniuse-lite@1.0.30001684: caniuse-lite@1.0.30001685:
resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==} resolution: {integrity: sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==}
capnp-ts@0.7.0: capnp-ts@0.7.0:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==} resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
@ -5309,8 +5309,8 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'} engines: {node: '>= 0.8.0'}
type-fest@4.29.0: type-fest@4.29.1:
resolution: {integrity: sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==} resolution: {integrity: sha512-Y1zUveI92UYM/vo1EFlQSsNf74+hfKH+7saZJslF0Fw92FRaiTAnHPIvo9d7SLxXt/gAYqA4RXyDTioMQCCp0A==}
engines: {node: '>=16'} engines: {node: '>=16'}
type-is@1.6.18: type-is@1.6.18:
@ -5527,8 +5527,8 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0} engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true hasBin: true
vite-node@2.1.6: vite-node@2.1.7:
resolution: {integrity: sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==} resolution: {integrity: sha512-b/5MxSWd0ftWt1B1LHfzCw0ASzaxHztUwP0rcsBhkDSGy9ZDEDieSIjFG3I78nI9dUN0eSeD6LtuKPZGjwwpZQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true hasBin: true
@ -5581,15 +5581,15 @@ packages:
terser: terser:
optional: true optional: true
vitest@2.1.6: vitest@2.1.7:
resolution: {integrity: sha512-isUCkvPL30J4c5O5hgONeFRsDmlw6kzFEdLQHLezmDdKQHy8Ke/B/dgdTMEgU0vm+iZ0TjW8GuK83DiahBoKWQ==} resolution: {integrity: sha512-wzJ7Wri44ufkzTZbI1lHsdHfiGdFRmnJ9qIudDQ6tknjJeHhF5QgNSSjk7KRZUU535qEiEXFJ7tSHqyzyIv0jQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
'@edge-runtime/vm': '*' '@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
'@vitest/browser': 2.1.6 '@vitest/browser': 2.1.7
'@vitest/ui': 2.1.6 '@vitest/ui': 2.1.7
happy-dom: '*' happy-dom: '*'
jsdom: '*' jsdom: '*'
peerDependenciesMeta: peerDependenciesMeta:
@ -7835,43 +7835,43 @@ snapshots:
'@vanilla-extract/private@1.0.6': {} '@vanilla-extract/private@1.0.6': {}
'@vitest/expect@2.1.6': '@vitest/expect@2.1.7':
dependencies: dependencies:
'@vitest/spy': 2.1.6 '@vitest/spy': 2.1.7
'@vitest/utils': 2.1.6 '@vitest/utils': 2.1.7
chai: 5.1.2 chai: 5.1.2
tinyrainbow: 1.2.0 tinyrainbow: 1.2.0
'@vitest/mocker@2.1.6(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6))': '@vitest/mocker@2.1.7(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6))':
dependencies: dependencies:
'@vitest/spy': 2.1.6 '@vitest/spy': 2.1.7
estree-walker: 3.0.3 estree-walker: 3.0.3
magic-string: 0.30.14 magic-string: 0.30.14
optionalDependencies: optionalDependencies:
vite: 5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6) vite: 5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)
'@vitest/pretty-format@2.1.6': '@vitest/pretty-format@2.1.7':
dependencies: dependencies:
tinyrainbow: 1.2.0 tinyrainbow: 1.2.0
'@vitest/runner@2.1.6': '@vitest/runner@2.1.7':
dependencies: dependencies:
'@vitest/utils': 2.1.6 '@vitest/utils': 2.1.7
pathe: 1.1.2 pathe: 1.1.2
'@vitest/snapshot@2.1.6': '@vitest/snapshot@2.1.7':
dependencies: dependencies:
'@vitest/pretty-format': 2.1.6 '@vitest/pretty-format': 2.1.7
magic-string: 0.30.14 magic-string: 0.30.14
pathe: 1.1.2 pathe: 1.1.2
'@vitest/spy@2.1.6': '@vitest/spy@2.1.7':
dependencies: dependencies:
tinyspy: 3.0.2 tinyspy: 3.0.2
'@vitest/utils@2.1.6': '@vitest/utils@2.1.7':
dependencies: dependencies:
'@vitest/pretty-format': 2.1.6 '@vitest/pretty-format': 2.1.7
loupe: 3.1.2 loupe: 3.1.2
tinyrainbow: 1.2.0 tinyrainbow: 1.2.0
@ -8169,7 +8169,7 @@ snapshots:
browserslist@4.24.2: browserslist@4.24.2:
dependencies: dependencies:
caniuse-lite: 1.0.30001684 caniuse-lite: 1.0.30001685
electron-to-chromium: 1.5.67 electron-to-chromium: 1.5.67
node-releases: 2.0.18 node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2) update-browserslist-db: 1.1.1(browserslist@4.24.2)
@ -8221,7 +8221,7 @@ snapshots:
callsites@3.1.0: {} callsites@3.1.0: {}
caniuse-lite@1.0.30001684: {} caniuse-lite@1.0.30001685: {}
capnp-ts@0.7.0: capnp-ts@0.7.0:
dependencies: dependencies:
@ -10965,7 +10965,7 @@ snapshots:
remix-utils@7.7.0(@remix-run/cloudflare@2.15.0(@cloudflare/workers-types@4.20241127.0)(typescript@5.7.2))(@remix-run/node@2.15.0(typescript@5.7.2))(@remix-run/react@2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/router@1.21.0)(react@18.3.1)(zod@3.23.8): remix-utils@7.7.0(@remix-run/cloudflare@2.15.0(@cloudflare/workers-types@4.20241127.0)(typescript@5.7.2))(@remix-run/node@2.15.0(typescript@5.7.2))(@remix-run/react@2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/router@1.21.0)(react@18.3.1)(zod@3.23.8):
dependencies: dependencies:
type-fest: 4.29.0 type-fest: 4.29.1
optionalDependencies: optionalDependencies:
'@remix-run/cloudflare': 2.15.0(@cloudflare/workers-types@4.20241127.0)(typescript@5.7.2) '@remix-run/cloudflare': 2.15.0(@cloudflare/workers-types@4.20241127.0)(typescript@5.7.2)
'@remix-run/node': 2.15.0(typescript@5.7.2) '@remix-run/node': 2.15.0(typescript@5.7.2)
@ -11519,7 +11519,7 @@ snapshots:
dependencies: dependencies:
prelude-ls: 1.2.1 prelude-ls: 1.2.1
type-fest@4.29.0: {} type-fest@4.29.1: {}
type-is@1.6.18: type-is@1.6.18:
dependencies: dependencies:
@ -11799,7 +11799,7 @@ snapshots:
- supports-color - supports-color
- terser - terser
vite-node@2.1.6(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6): vite-node@2.1.7(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6):
dependencies: dependencies:
cac: 6.7.14 cac: 6.7.14
debug: 4.3.7 debug: 4.3.7
@ -11851,15 +11851,15 @@ snapshots:
sass: 1.77.6 sass: 1.77.6
sass-embedded: 1.81.0 sass-embedded: 1.81.0
vitest@2.1.6(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6): vitest@2.1.7(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6):
dependencies: dependencies:
'@vitest/expect': 2.1.6 '@vitest/expect': 2.1.7
'@vitest/mocker': 2.1.6(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)) '@vitest/mocker': 2.1.7(vite@5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6))
'@vitest/pretty-format': 2.1.6 '@vitest/pretty-format': 2.1.7
'@vitest/runner': 2.1.6 '@vitest/runner': 2.1.7
'@vitest/snapshot': 2.1.6 '@vitest/snapshot': 2.1.7
'@vitest/spy': 2.1.6 '@vitest/spy': 2.1.7
'@vitest/utils': 2.1.6 '@vitest/utils': 2.1.7
chai: 5.1.2 chai: 5.1.2
debug: 4.3.7 debug: 4.3.7
expect-type: 1.1.0 expect-type: 1.1.0
@ -11871,7 +11871,7 @@ snapshots:
tinypool: 1.0.2 tinypool: 1.0.2
tinyrainbow: 1.2.0 tinyrainbow: 1.2.0
vite: 5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6) vite: 5.4.11(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)
vite-node: 2.1.6(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6) vite-node: 2.1.7(@types/node@22.10.1)(sass-embedded@1.81.0)(sass@1.77.6)
why-is-node-running: 2.3.0 why-is-node-running: 2.3.0
optionalDependencies: optionalDependencies:
'@types/node': 22.10.1 '@types/node': 22.10.1