From: Jérôme Benoit Date: Sat, 29 Oct 2022 12:43:59 +0000 (+0200) Subject: Remove deprecated vscode configuration X-Git-Tag: v2.3.8~101 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=6280f2af8a9a129e3986cc4bffb900a8b8507ba2;p=poolifier.git Remove deprecated vscode configuration Signed-off-by: Jérôme Benoit --- diff --git a/.vscode/launch.json b/.vscode/launch.json index d76d6df0..19af46e9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,6 @@ "request": "launch", "name": "Launch Tests Debug", "cwd": "${workspaceFolder}", - // "preLaunchTask": "Development build", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "test:debug"], "skipFiles": ["/**"], @@ -20,7 +19,6 @@ "request": "launch", "name": "Launch Benchmarks Debug", "cwd": "${workspaceFolder}", - // "preLaunchTask": "Development build", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "benchmark:debug"], "skipFiles": ["/**"], diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index a6d60cd7..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Build", - "type": "npm", - "script": "build:prod" - }, - { - "label": "Development build", - "type": "npm", - "script": "build" - } - ] -}