You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,12 +220,17 @@ What VSCode doesn't have currently is automatic detection of `npm` build tools i
220
220
"label": "ng-build",
221
221
"type": "shell",
222
222
"command": "src/main/client/ng build"
223
+
},
224
+
{
225
+
"label": "ng-watch",
226
+
"type": "shell",
227
+
"command": "src/main/client/ng build --watch"
223
228
}
224
229
]
225
230
}
226
231
```
227
232
228
-
With that in place your `Tasks->Run Task...` menu should include the `ng-build` option, and it will run the angular build for you. You could add other entries for running tests.
233
+
With that in place your `Tasks->Run Task...` menu should include the `ng-watch` option, and it will run the angular build for you and re-compile if you make changes. You could add other entries for running tests.
0 commit comments