Insulince

Results 3 comments of Insulince

Also worth noting that simply doing from a terminal: ```bash cd frontend npm install ``` completes without error, which is what I assume this step is doing. But this doesn't...

After a bit of digging I found the following. This is in the official wails repository ([here](https://github.com/wailsapp/wails/blob/87b1d1d2aac4a4708fcf09ded1b0462493cc84bd/v2/internal/project/project.go#L87-L92)): ![image](https://user-images.githubusercontent.com/18339921/181817345-3b00f6d2-fb2e-405f-8d5d-68a792216efe.png) This implies that the `frontend:install` command used in `wails.json` is ignored when...

So... `frontend:dev` executes `npm run watch` which executes `ng build --watch --configuration development --delete-output-path false --output-hashing none`. Which, because of the `--watch` flag, never exits. But if this command never...