magic-helix-vscode 4.0.0-beta.2 → 4.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
- package/src/extension.ts +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "magic-helix-vscode",
|
|
3
3
|
"displayName": "MagicAgentHelix Runner",
|
|
4
4
|
"description": "Advanced VS Code extension for running MagicAgentHelix CLI with AI-powered refinement, command history, favorites, workspace configuration, and progress tracking.",
|
|
5
|
-
"version": "4.0.0-beta.
|
|
5
|
+
"version": "4.0.0-beta.4",
|
|
6
6
|
"publisher": "el-j",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -296,8 +296,9 @@
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"scripts": {
|
|
299
|
-
"
|
|
300
|
-
"
|
|
299
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
300
|
+
"build": "npm run clean && tsc",
|
|
301
|
+
"package": "npm run build && vsce package --no-yarn"
|
|
301
302
|
},
|
|
302
303
|
"dependencies": {
|
|
303
304
|
"@el-j/magic-helix-core": "*",
|
package/src/extension.ts
CHANGED
|
@@ -688,7 +688,7 @@ function updateStatusBar(update: ProgressUpdate) {
|
|
|
688
688
|
}
|
|
689
689
|
|
|
690
690
|
async function showPluginStatusPanel(
|
|
691
|
-
|
|
691
|
+
_context: vscode.ExtensionContext,
|
|
692
692
|
): Promise<void> {
|
|
693
693
|
try {
|
|
694
694
|
// Import PluginRegistry dynamically
|