Artur

Results 189 issues of 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...

bug
Impact: Low
Severity: Major
v14

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

external dependency
+0.0.1

### 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`....

enhancement
maven-plugin
production

### 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...

bug
performance
Impact: High
Severity: Minor

### 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...

enhancement
push

### 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...

enhancement

### 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...

enhancement
live reload

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...

type: bug