pre-release: fix ci (#1)

* fix aoneci

* remove codeql

* sync version to 0.0.1-alpha.7

* renaming org to qwen-code
This commit is contained in:
Fan
2025-07-23 00:27:14 +08:00
committed by GitHub
parent 13c0b24110
commit daad04613e
74 changed files with 147 additions and 156 deletions

View File

@@ -7,7 +7,7 @@
import { act, renderHook } from '@testing-library/react';
import { vi } from 'vitest';
import { useShellCommandProcessor } from './shellCommandProcessor';
import { Config, GeminiClient } from '@qwen/qwen-code-core';
import { Config, GeminiClient } from '@qwen-code/qwen-code-core';
import * as fs from 'fs';
import EventEmitter from 'events';
@@ -22,7 +22,7 @@ vi.mock('os', () => ({
platform: () => 'linux',
tmpdir: () => '/tmp',
}));
vi.mock('@qwen/qwen-code-core');
vi.mock('@qwen-code/qwen-code-core');
vi.mock('../utils/textUtils.js', () => ({
isBinary: vi.fn(),
}));