Skip to content

Releases: theoludwig/html-w3c-validator

v1.7.0

09 Nov 15:45
fbe3830
Compare
Choose a tag to compare

1.7.0 (2024-11-09)

Bug Fixes

  • print correctly validation results (cc6a127), closes #6

Features

  • ability to use json $schema locally => ./node_modules/html-w3c-validator/schema/schema.json (fbe3830)

    {
      "$schema": "./node_modules/html-w3c-validator/schema/schema.json",
      "files": ["./index.html", "./about.html"]
    }

v1.6.2

23 May 19:23
e53c80d
Compare
Choose a tag to compare

1.6.2 (2024-05-23)

Bug Fixes

  • update dependencies to latest (e53c80d)

v1.6.1

02 Feb 16:11
67b70fe
Compare
Choose a tag to compare

1.6.1 (2024-02-02)

Features

  • add config JSON schema (8934ac1)

    The config .html-w3c-validatorrc.json can now use the $schema property. For example:

    {
      "$schema": "https://raw.githubusercontent.com/theoludwig/html-w3c-validator/master/schema/html-w3c-validatorrc-schema.json",
      "files": ["./index.html", "./about.html"]
    }

Performance Improvements

  • remove usage of html-validator dependency (reducing overall package size) (6b28c6d)

    Before v1.6.1: npm install html-w3c-validator, node_modules size: 9.2 Mb
    v1.6.1: npm install html-w3c-validator, node_modules size: 4.8 Mb

v1.6.0

02 Feb 16:09
6b28c6d
Compare
Choose a tag to compare

Broken release because of wrong husky config.
Please, install v1.6.1, thanks!

Sorry for any inconveniences.

v1.5.1

26 Dec 21:45
7dafa24
Compare
Choose a tag to compare

1.5.1 (2023-12-26)

Bug Fixes

  • update dependencies to latest (7dafa24)

v1.5.0

09 Aug 15:06
e3cd809
Compare
Choose a tag to compare

1.5.0 (2023-08-09)

Features

  • add --current-working-directory option (1ae47aa)

Bug Fixes

  • only show error messages related to configured severities (e3cd809)
  • update dependencies to latest (d442403)

v1.4.0

02 Jul 13:25
c7bf821
Compare
Choose a tag to compare

1.4.0 (2023-07-02)

Features

  • ability to specify the severity of the validator (2920398), closes #4

Bug Fixes

  • update author - Théo LUDWIG (bda82b3)

Performance Improvements

  • ignore test files in published package (reduce package size) (a8841b2)

v1.3.0

13 May 14:26
3d24ffe
Compare
Choose a tag to compare

1.3.0 (2023-05-13)

Features

  • add npm package provenance (3d24ffe)

v1.2.2

10 Jan 21:16
943b3d1
Compare
Choose a tag to compare

1.2.2 (2023-01-10)

Bug Fixes

  • update dependencies to latest (943b3d1)

v1.2.1

20 Oct 21:49
6ca7722
Compare
Choose a tag to compare

1.2.1 (2022-10-20)

Bug Fixes

  • only consider errors (excluding warning/info messages) (3a44eca)

Performance Improvements

  • run validations in parallel (6ca7722), closes #3