diff --git a/package-lock.json b/package-lock.json index aaf9f20a..95c2947b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "ignore": "~5.2.0", "js-yaml": "^4.1.0", "jsonc-parser": "~3.0.0", - "markdownlint": "~0.24.0", + "markdownlint": "~0.25.0", "markdownlint-rule-helpers": "~0.16.0", "minimatch": "~3.0.4", "run-con": "~1.2.10" @@ -4620,9 +4620,9 @@ } }, "node_modules/markdown-it": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.2.0.tgz", - "integrity": "sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==", + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.0.tgz", + "integrity": "sha512-T345UZZ6ejQWTjG6PSEHplzNy5m4kF6zvUpHVDv8Snl/pEU0OxIK0jGg8YLVNwJvT8E0YJC7/2UvssJDk/wQCQ==", "dependencies": { "argparse": "^2.0.1", "entities": "~2.1.0", @@ -4635,14 +4635,14 @@ } }, "node_modules/markdownlint": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.24.0.tgz", - "integrity": "sha512-OJIGsGFV/rC9irI5E1FMy6v9hdACSwaa+EN3224Y5KG8zj2EYzdHOw0pOJovIYmjNfEZ9BtxUY4P7uYHTSNnbQ==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.0.tgz", + "integrity": "sha512-HtmitJLnzMyPbxy0tkEkzM6GP8it9tshI2XC+eUB+ZcdtWx5sokakQGEGOPVhra2CB/qRRuFEJ9Xl+X/BaB9QQ==", "dependencies": { - "markdown-it": "12.2.0" + "markdown-it": "12.3.0" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/markdownlint-rule-helpers": { @@ -11609,9 +11609,9 @@ "dev": true }, "markdown-it": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.2.0.tgz", - "integrity": "sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==", + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.0.tgz", + "integrity": "sha512-T345UZZ6ejQWTjG6PSEHplzNy5m4kF6zvUpHVDv8Snl/pEU0OxIK0jGg8YLVNwJvT8E0YJC7/2UvssJDk/wQCQ==", "requires": { "argparse": "^2.0.1", "entities": "~2.1.0", @@ -11621,11 +11621,11 @@ } }, "markdownlint": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.24.0.tgz", - "integrity": "sha512-OJIGsGFV/rC9irI5E1FMy6v9hdACSwaa+EN3224Y5KG8zj2EYzdHOw0pOJovIYmjNfEZ9BtxUY4P7uYHTSNnbQ==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.0.tgz", + "integrity": "sha512-HtmitJLnzMyPbxy0tkEkzM6GP8it9tshI2XC+eUB+ZcdtWx5sokakQGEGOPVhra2CB/qRRuFEJ9Xl+X/BaB9QQ==", "requires": { - "markdown-it": "12.2.0" + "markdown-it": "12.3.0" } }, "markdownlint-rule-helpers": { diff --git a/package.json b/package.json index d01a49e7..07196b53 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "ignore": "~5.2.0", "js-yaml": "^4.1.0", "jsonc-parser": "~3.0.0", - "markdownlint": "~0.24.0", + "markdownlint": "~0.25.0", "markdownlint-rule-helpers": "~0.16.0", "minimatch": "~3.0.4", "run-con": "~1.2.10" diff --git a/test/test.js b/test/test.js index a1c1f0d2..233ca420 100644 --- a/test/test.js +++ b/test/test.js @@ -499,7 +499,7 @@ test('error on malformed YAML configuration file', async t => { {stripFinalNewline: false}); } catch (error) { t.is(error.stdout, ''); - t.regex(error.stderr, /Cannot read or parse config file 'malformed-config.yaml': Unable to parse 'malformed-config.yaml'; Unexpected token/); + t.regex(error.stderr, /Cannot read or parse config file 'malformed-config.yaml': Unable to parse 'malformed-config.yaml'; Parser 0: Unexpected token/); t.is(error.exitCode, 4); } });