Compare commits

...

1 Commits

Author SHA1 Message Date
root 5b116e016c feature: tag source:vscode sur events open/save + .npmrc fund/audit 2026-06-14 22:43:42 +02:00
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -1 +1,3 @@
min-release-age=1
fund=false
audit=false
+2 -2
View File
@@ -36,7 +36,7 @@ export function activate(context: vscode.ExtensionContext) {
console.log('Opened file:', filePath);
// vscode.window.showInformationMessage(`Opened file: ${filePath}`);
await makeHttpRequest({ event: 'open', project: extractProjectName(filePath) });
await makeHttpRequest({ event: 'open', project: extractProjectName(filePath), source: 'vscode' });
}
});
@@ -46,7 +46,7 @@ export function activate(context: vscode.ExtensionContext) {
console.log('Saved file:', filePath);
// vscode.window.showInformationMessage(`Saved file: ${filePath}`);
await makeHttpRequest({ event: 'save', project: extractProjectName(filePath) });
await makeHttpRequest({ event: 'save', project: extractProjectName(filePath), source: 'vscode' });
});
// detecte un focus / blur de la fenetre vscode