@user231243/remove-debugger 0.0.4 → 0.0.6

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.
Binary file
package/package.json CHANGED
@@ -6,9 +6,13 @@
6
6
  },
7
7
  "displayName": "Remove Debugger",
8
8
  "description": "Remove debugger statements and console calls from JS/TS files",
9
- "version": "0.0.4",
10
- "engines": { "vscode": "^1.75.0" },
11
- "categories": ["Other"],
9
+ "version": "0.0.6",
10
+ "engines": {
11
+ "vscode": "^1.75.0"
12
+ },
13
+ "categories": [
14
+ "Other"
15
+ ],
12
16
  "activationEvents": [
13
17
  "onLanguage:javascript",
14
18
  "onLanguage:typescript",
@@ -16,7 +20,10 @@
16
20
  "onLanguage:typescriptreact"
17
21
  ],
18
22
  "main": "./out/extension.js",
19
- "files": ["out/", "package.json"],
23
+ "files": [
24
+ "out/",
25
+ "package.json"
26
+ ],
20
27
  "contributes": {
21
28
  "commands": [
22
29
  {
@@ -49,7 +56,14 @@
49
56
  },
50
57
  "removeDebugger.consoleMethodsToRemove": {
51
58
  "type": "array",
52
- "default": ["log", "warn", "error", "info", "debug", "trace"],
59
+ "default": [
60
+ "log",
61
+ "warn",
62
+ "error",
63
+ "info",
64
+ "debug",
65
+ "trace"
66
+ ],
53
67
  "description": "Which console methods to remove when removeConsole is enabled."
54
68
  }
55
69
  }
@@ -65,4 +79,4 @@
65
79
  "@types/node": "^18.0.0",
66
80
  "typescript": "^5.0.0"
67
81
  }
68
- }
82
+ }