Skip to content

Commit b7d0f05

Browse files
committed
2.0.0
1 parent 41894e2 commit b7d0f05

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-socket-security",
33
"displayName": "Socket Security",
44
"description": "Editor integration with Socket Security",
5-
"version": "1.1.5",
5+
"version": "2.0.0",
66
"private": true,
77
"preview": false,
88
"categories": [

src/lifecycle/uninstall.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// if this is updated, update purl scripts
2+
import fs from 'fs'
3+
import os from 'os'
4+
import path from 'path'
5+
const cacheDir = path.resolve(os.homedir(), '.socket', 'vscode')
6+
try {
7+
fs.rmSync(cacheDir, { recursive: true, force: true })
8+
} catch {}

0 commit comments

Comments
 (0)