Skip to content

Commit

Permalink
Clean up leftovers
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitris Zervas <[email protected]>
  • Loading branch information
dzervas authored and av8ta committed Jun 7, 2024
1 parent e327d5b commit 18c0009
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 149 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"ms-playwright.playwright",
"vadimcn.vscode-lldb"
"vadimcn.vscode-lldb",
"dbaeumer.vscode-eslint"
]
}
}
Expand Down
59 changes: 4 additions & 55 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,71 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "[Chrome] Run & Debug",
"name": "[Svelte] Run & Debug",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": [
"dev",
],
"runtimeArgs": ["dev"],
"type": "node",
"cwd": "${workspaceFolder}/applications/web",
"killBehavior": "polite",
"serverReadyAction": {
"action": "debugWithChrome",
"pattern": "Local: +http://127.0.0.1:([0-9]+)/",
"uriFormat": "http://127.0.0.1:%s",
"webRoot": "${workspaceFolder}/applications/web/src",
"killOnServerStop": true
}
},
{
"name": "[Rust] Debug WASM binary",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/packages/cadmium/pkg/cadmium_bg.wasm",
"cwd": "${workspaceFolder}/packages/cadmium",
"stopOnEntry": false,
"preLaunchTask": "cargo:build",
"sourceLanguages": ["rust"]
},
{
"type": "lldb",
"request": "launch",
"name": "[Rust] Debug unit tests",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=cadmium"
],
"filter": {
"name": "cadmium",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "[Rust] Debug example 'project_simple_extrusion'",
"cargo": {
"args": [
"build",
"--example=project_simple_extrusion",
"--package=cadmium"
],
"filter": {
"name": "project_simple_extrusion",
"kind": "example"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
],
}
93 changes: 0 additions & 93 deletions .vscode/tasks.json

This file was deleted.

0 comments on commit 18c0009

Please sign in to comment.