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/es/core.js CHANGED
@@ -13044,8 +13044,7 @@ class HtmlValidate {
13044
13044
  * @returns Report output.
13045
13045
  */
13046
13046
  async validateMultipleFiles(filenames) {
13047
- const report = Reporter.merge(filenames.map((filename) => this.validateFileSync(filename)));
13048
- return Promise.resolve(report);
13047
+ return Reporter.merge(filenames.map((filename) => this.validateFile(filename)));
13049
13048
  }
13050
13049
  /**
13051
13050
  * Parse and validate HTML from multiple files. Result is merged together to a
@@ -13348,7 +13347,7 @@ class HtmlValidate {
13348
13347
  }
13349
13348
 
13350
13349
  const name = "html-validate";
13351
- const version = "9.0.0";
13350
+ const version = "9.0.1";
13352
13351
  const bugs = "https://gitlab.com/html-validate/html-validate/issues/new";
13353
13352
 
13354
13353
  function definePlugin(plugin) {