Fix build

This commit is contained in:
Johannes Zillmann 2021-07-12 06:37:09 -06:00
parent 98eb971533
commit eb8e92c56d
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"description": "A PDF to Markdown Converter", "description": "A PDF to Markdown Converter",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"watch": "webpack -d --watch", "watch": "webpack --mode development --watch",
"build": "webpack", "build": "webpack",
"start": "webpack serve", "start": "webpack serve",
"lint": "eslint src --ext .js --ext .jsx --cache", "lint": "eslint src --ext .js --ext .jsx --cache",

View File

@ -106,7 +106,7 @@ export function isListItem(string) {
} }
export function isNumberedListItem(string) { export function isNumberedListItem(string) {
return /^[\s]*[\d]*[\.][\s].*$/g.test(string); return /^[\s]*[\d]*[.][\s].*$/g.test(string);
} }
export function wordMatch(string1, string2) { export function wordMatch(string1, string2) {