html-validate 9.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/core.js CHANGED
@@ -13054,8 +13054,7 @@ class HtmlValidate {
13054
13054
  * @returns Report output.
13055
13055
  */
13056
13056
  async validateMultipleFiles(filenames) {
13057
- const report = Reporter.merge(filenames.map((filename) => this.validateFileSync(filename)));
13058
- return Promise.resolve(report);
13057
+ return Reporter.merge(filenames.map((filename) => this.validateFile(filename)));
13059
13058
  }
13060
13059
  /**
13061
13060
  * Parse and validate HTML from multiple files. Result is merged together to a
@@ -13358,7 +13357,7 @@ class HtmlValidate {
13358
13357
  }
13359
13358
 
13360
13359
  const name = "html-validate";
13361
- const version = "9.0.0";
13360
+ const version = "9.0.1";
13362
13361
  const bugs = "https://gitlab.com/html-validate/html-validate/issues/new";
13363
13362
 
13364
13363
  function definePlugin(plugin) {