Skip to content

Commit

Permalink
Fixup build step
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer committed Aug 18, 2024
1 parent 990eb7b commit bdd288b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"request": "launch",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
// "outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": "dev"
"preLaunchTask": "build:dev"
},
{
"name": "Test Extension",
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "2.0.0",
"tasks": [
{
"label": "dev",
"label": "build:dev",
"type": "npm",
"script": "dev",
"script": "build:dev",
"group": "build",
"isBackground": true,
"problemMatcher": [
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
],
"scripts": {
"build": "node build.mjs --mode=production",
"build:dev": "node build.mjs",
"clean:all": "npm run clean:dist && npm run clean:language && npm run clean:out",
"clean:dist": "del-cli dist",
"clean:language": "del-cli language/*.tmLanguage.json",
Expand Down

0 comments on commit bdd288b

Please sign in to comment.