We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41894e2 commit b7d0f05Copy full SHA for b7d0f05
package.json
@@ -2,7 +2,7 @@
2
"name": "vscode-socket-security",
3
"displayName": "Socket Security",
4
"description": "Editor integration with Socket Security",
5
- "version": "1.1.5",
+ "version": "2.0.0",
6
"private": true,
7
"preview": false,
8
"categories": [
src/lifecycle/uninstall.mjs
@@ -0,0 +1,8 @@
1
+// if this is updated, update purl scripts
+import fs from 'fs'
+import os from 'os'
+import path from 'path'
+const cacheDir = path.resolve(os.homedir(), '.socket', 'vscode')
+try {
+ fs.rmSync(cacheDir, { recursive: true, force: true })
+} catch {}
0 commit comments