Artur
Artur
### Description of the bug In Vaadin 14, tsconfig.json is only generated if the project contains `.ts` files. However, if the TS files end up in the fallback bundle, for...
Especially in multi module projects, the folder is updated with new contents quite often. Also if you change an addon version, the changes need to be picked up. Fixes #14695
### Description of the bug If you build an addon you might set up the project so that you have the addon in `src/main/java` and a test application in `src/test/java`....
### Description of the bug `PWARegistry` is eagerly initialized in its constructor. This is called on the first request to the server, so in dev mode it happens after the...
### Describe your motivation There is no use case for setting a custom push URL. It is similar to the URL used for UIDL requests. If you run a normal...
### Describe your motivation When you are starting an application in development mode, a couple of things that are not fast have to happen: 1. If there is no node...
### Describe your motivation When you start a Spring Boot application using Spring boot dev tools, it automatically starts a livereload server on port 35729. This port is hard coded...
If your `main` method throws an exception, e.g. ```java @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); throw new IllegalStateException("boo ya"); } } ``` and...