chore(vscode-ide-companion): update dependencies in package-lock.json

Added new dependencies including:
- @cfworker/json-schema
- @parcel/watcher and related platform-specific packages
- autoprefixer
- browserslist
- chokidar
- Various other utility packages

These updates likely support enhanced functionality and improved compatibility.
This commit is contained in:
yiliang114
2025-11-25 15:30:36 +08:00
parent 579772197a
commit 0cbf95d6b3
22 changed files with 1477 additions and 352 deletions

View File

@@ -30,6 +30,7 @@ export class PanelManager {
* 设置 Panel用于恢复
*/
setPanel(panel: vscode.WebviewPanel): void {
console.log('[PanelManager] Setting panel for restoration');
this.panel = panel;
}
@@ -171,19 +172,6 @@ export class PanelManager {
console.log(
'[PanelManager] Skipping auto-lock to allow multiple Qwen Code tabs',
);
// If you want to enable auto-locking for the first tab, uncomment the following:
// const existingQwenInfo = this.findExistingQwenCodeGroup();
// if (!existingQwenInfo) {
// console.log('[PanelManager] First Qwen Code tab, locking editor group');
// try {
// this.revealPanel(false);
// await vscode.commands.executeCommand('workbench.action.lockEditorGroup');
// console.log('[PanelManager] Editor group locked successfully');
// } catch (error) {
// console.warn('[PanelManager] Failed to lock editor group:', error);
// }
// }
}
/**