Skip to content

Commit

Permalink
feat: add new elixir icon for eex and heex extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
equinusocio committed Jan 19, 2024
1 parent d25e930 commit b4781bf
Show file tree
Hide file tree
Showing 6 changed files with 1,717 additions and 29 deletions.
19 changes: 11 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// A launch configuration that launches the extension inside a new window
// A launch configuration that compiles the extension and then opens it inside a new window
// 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.1.0",
"configurations": [{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"preLaunchTask": "build"
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"preLaunchTask": "build"
}]
}
}
27 changes: 16 additions & 11 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"version": "2.0.0",
"command": "yarn",
"type": "shell",
"presentation": {
"reveal": "always"
},
"tasks": [{
"group": "build",
"label": "build",
"args": ["build"]
}]
}
"tasks": [
{
"args": [
"run",
"build"
],
"command": "npm",
"label": "build",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

Loading

0 comments on commit b4781bf

Please sign in to comment.