Skip to content

Commit

Permalink
Minor fix for watch detection
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy committed Sep 3, 2024
1 parent e6b97cd commit f771642
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
class BundleWebAssetsScannerProcessor {

private static final Logger LOGGER = Logger.getLogger(BundleWebAssetsScannerProcessor.class);
public static AtomicBoolean enableBundlingWatch = new AtomicBoolean(true);
private static final String FEATURE = "web-bundler";
public static final String MAIN_ENTRYPOINT_KEY = "main";
public static AtomicBoolean enableBundlingWatch = new AtomicBoolean(true);

@BuildStep
FeatureBuildItem feature() {
Expand Down Expand Up @@ -100,7 +100,7 @@ void collect(ProjectResourcesScannerBuildItem scanner,
}

LOGGER.debug("Web bundler scan started");
enableBundlingWatch.set(true);

final List<Scanner> quteTagsAssetsScanners = new ArrayList<>();
final List<Scanner> bundleConfigAssetsScanners = new ArrayList<>();

Expand Down

0 comments on commit f771642

Please sign in to comment.