[skip ci] Misc stuff (#1766)

* Refactored some code in BookService to make the code easier to understand

* More lint fixes

* Use npm ci for installs in pipeline

* Fixed build system again by deleting nodejs. New build system uses package-lcok going forward.

* Added a test case for Reading Time Estimation calculations

* Some cleanup

* Added even more testing to try and get scare's issue captured.
This commit is contained in:
Joe Milazzo 2023-01-30 12:36:45 -08:00 committed by GitHub
parent 5b05568436
commit 91a2a6854f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 179 additions and 14 deletions

View file

@ -143,7 +143,7 @@ public class WordCountAnalyzerService : IWordCountAnalyzerService
}
public async Task ProcessSeries(Series series, bool forceUpdate = false, bool useFileName = true)
private async Task ProcessSeries(Series series, bool forceUpdate = false, bool useFileName = true)
{
var isEpub = series.Format == MangaFormat.Epub;
var existingWordCount = series.WordCount;