chore: fix invalid package deps
This commit is contained in:
parent
bc92da04e9
commit
b5514fd052
5 changed files with 3266 additions and 874 deletions
4132
package-lock.json
generated
4132
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -76,7 +76,7 @@
|
||||||
"react-dom": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.3.3",
|
||||||
"vitest": "^3.1.1",
|
"vitest": "^3.1.1",
|
||||||
"@google/gemini-cli-test-utils": "file:../test-utils"
|
"@qwen-code/qwen-code-test-utils": "file:../test-utils"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20"
|
"node": ">=20"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import { describe, it, expect, beforeEach, vi, afterEach } from 'vitest';
|
||||||
import { renderHook, act, waitFor } from '@testing-library/react';
|
import { renderHook, act, waitFor } from '@testing-library/react';
|
||||||
import { useCommandCompletion } from './useCommandCompletion.js';
|
import { useCommandCompletion } from './useCommandCompletion.js';
|
||||||
import { CommandContext } from '../commands/types.js';
|
import { CommandContext } from '../commands/types.js';
|
||||||
import { Config } from '@google/gemini-cli-core';
|
import { Config } from '@qwen-code/qwen-code-core';
|
||||||
import { useTextBuffer } from '../components/shared/text-buffer.js';
|
import { useTextBuffer } from '../components/shared/text-buffer.js';
|
||||||
import { useEffect } from 'react';
|
import { useEffect } from 'react';
|
||||||
import { Suggestion } from '../components/SuggestionsDisplay.js';
|
import { Suggestion } from '../components/SuggestionsDisplay.js';
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
"ws": "^8.18.0"
|
"ws": "^8.18.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@google/gemini-cli-test-utils": "file:../test-utils",
|
"@qwen-code/qwen-code-test-utils": "file:../test-utils",
|
||||||
"@types/diff": "^7.0.2",
|
"@types/diff": "^7.0.2",
|
||||||
"@types/dotenv": "^6.1.1",
|
"@types/dotenv": "^6.1.1",
|
||||||
"@types/micromatch": "^4.0.8",
|
"@types/micromatch": "^4.0.8",
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import * as fs from 'fs/promises';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as cache from './crawlCache.js';
|
import * as cache from './crawlCache.js';
|
||||||
import { FileSearch, AbortError, filter } from './fileSearch.js';
|
import { FileSearch, AbortError, filter } from './fileSearch.js';
|
||||||
import { createTmpDir, cleanupTmpDir } from '@google/gemini-cli-test-utils';
|
import { createTmpDir, cleanupTmpDir } from '@qwen-code/qwen-code-test-utils';
|
||||||
|
|
||||||
type FileSearchWithPrivateMethods = FileSearch & {
|
type FileSearchWithPrivateMethods = FileSearch & {
|
||||||
performCrawl: () => Promise<void>;
|
performCrawl: () => Promise<void>;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue