Versió 1.0.10: Un montó de FIXos pa que funcione en release

This commit is contained in:
2026-04-13 11:10:08 +02:00
parent 24957e575c
commit c8f9394614
5 changed files with 20 additions and 14 deletions

View File

@@ -2,6 +2,7 @@ const vscode = require('vscode');
const path = require('path');
function activate(context) {
const factory = {
createDebugAdapterDescriptor(session) {
const command = "node";
@@ -11,12 +12,12 @@ function activate(context) {
}
};
const registration = vscode.debug.registerDebugAdapterDescriptorFactory(
"mini-debugger",
factory
context.subscriptions.push(
vscode.debug.registerDebugAdapterDescriptorFactory(
"mini-debugger",
factory
)
);
context.subscriptions.push(registration);
}
function deactivate() {}