Skip to content

Commit

Permalink
Merge pull request #186 from sebjulliand/build/watchTask
Browse files Browse the repository at this point in the history
Build/watchTask
  • Loading branch information
worksofliam authored Jan 9, 2024
2 parents e518652 + 7de760d commit d279656
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 157 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint"
"dbaeumer.vscode-eslint",
"amodio.tsl-problem-matcher"
]
}
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: webpack",
"preLaunchTask": "${defaultBuildTask}",
"sourceMaps": true
},
{
Expand All @@ -28,7 +28,7 @@
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: webpack",
"preLaunchTask": "${defaultBuildTask}",
"sourceMaps": true,
"env": {
"testing": "true"
Expand Down
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "webpack-dev",
"problemMatcher": "$ts-webpack-watch",
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "watchers"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
155 changes: 2 additions & 153 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,6 @@
"eslint": "^7.32.0",
"glob": "^7.1.7",
"raw-loader": "^4.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.3.2",
"vitest": "^0.33.0",
"vscode-test": "^1.5.2",
Expand Down

0 comments on commit d279656

Please sign in to comment.