io.mvnpm.esbuild.model.WatchBuildResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esbuild-java Show documentation
Show all versions of esbuild-java Show documentation
Small wrapper around esbuild to be able to use it in Java
The newest version!
package io.mvnpm.esbuild.model;
import io.mvnpm.esbuild.BundleException;
public record WatchBuildResult(String output, BundleException bundleException) {
public WatchBuildResult(String output) {
this(output, null);
}
public boolean isSuccess() {
return bundleException == null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy