我正在尝试使用HMR进行webpack 2,但我遇到了一个奇怪的问题。
每次修改后,增量更新都会很快完成,然后会显示消息@Test
public void testPickWinner()
throws InstanceNotFoundException, TypeNotMultipleException {
Calendar betDateAfter = Calendar.getInstance();
betDateAfter.add(Calendar.WEEK_OF_YEAR, 1);
CategoryInfo category = new CategoryInfo("categoria1");
categoryInfoDao.save(category);
EventInfo event = eventService.createEvent(
new EventInfo("Barça-Madrid", betDateAfter, category));
BetType type = new BetType("¿Who will win?", false, event);
List<TypeOption> options = new ArrayList<TypeOption>();
TypeOption option1 = new TypeOption(1.20, "Barcelona", type);
options.add(option1);
TypeOption option2 = new TypeOption(10, "Real Madrid", type);
options.add(option2);
eventService.addBetType(event.getEventId(), type, options);
betService.changeOptionStatus(option1.getOptionId(), true);
assertTrue(option1.getIsWinner());
}
。之后,构建完成需要几秒钟。
问题是每次更改后,构建(第二次传递)会持续大约半秒钟,并在一段时间后变得无法使用。
我使用webpack 2.1.0 beta 4与style,css,sass和babel加载器。
我很感激如何使构建时间保持不变。