From 75c077272b22610f267db89710ed45ecba776105 Mon Sep 17 00:00:00 2001 From: yami Date: Sat, 27 Jan 2024 20:00:09 +0530 Subject: [PATCH] version bump --- package.json | 2 +- webpack.plugins.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 0849862..6a1bc98 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "yomikiru", "productName": "Yomikiru", - "version": "2.19.1", + "version": "2.19.2", "description": "An offline desktop reader for manga, comics, and novels. Offers a customizable reading experience with extensive settings, shortcuts, themes and layouts.", "main": ".webpack/main", "author": { diff --git a/webpack.plugins.ts b/webpack.plugins.ts index ca9f93e..f689004 100644 --- a/webpack.plugins.ts +++ b/webpack.plugins.ts @@ -4,8 +4,8 @@ import { IgnorePlugin } from "webpack"; const ForkTsCheckerWebpackPlugin: typeof IForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); export const plugins = [ - // new ForkTsCheckerWebpackPlugin({ - // logger: "webpack-infrastructure", - // }), + new ForkTsCheckerWebpackPlugin({ + logger: "webpack-infrastructure", + }), new IgnorePlugin({ resourceRegExp: /^fsevents$/ }), ];