-
Notifications
You must be signed in to change notification settings - Fork 1
VS Code Client Side Development
Max Kasperowski edited this page Jun 7, 2023
·
6 revisions
TODO
TODO
Either make a tree widget or a webview.
If developing on systems with limited resources it can happen that you run into a file watcher limit when using the yarn watch
command. The solution to this is to restrict the watchers to the relevant files, i.e., the files actively being worked on. For example, to restrict the watch command to the files in the @kieler/klighd-core
and klighd-vscode
scopes, the command must be modified in the package.json
as follows:
...
"watch": "lerna run --scope @kieler/klighd-core --scope klighd-vscode watch --parallel",
...
If developing in other scopes the command may be modified as necessary. Remember to not commit these changes however.