obsohtml 1.9.8 → 1.9.9

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/obsohtml.svg)](https://www.npmjs.com/package/obsohtml) [![Build status](https://github.com/j9t/obsohtml/workflows/Tests/badge.svg)](https://github.com/j9t/obsohtml/actions) [![Socket](https://badge.socket.dev/npm/package/obsohtml)](https://socket.dev/npm/package/obsohtml)
4
4
 
5
- ObsoHTML is a Node.js script designed to scan HTML, PHP, Nunjucks, Twig, JavaScript, and TypeScript files for obsolete or proprietary HTML attributes and elements. It helps you identify and update deprecated HTML code to be more sure to use web standards.
5
+ ObsoHTML is a Node.js script designed to scan HTML, PHP, Nunjucks, Twig, JavaScript, and TypeScript files for obsolete and proprietary HTML elements and attributes. It helps you identify and update deprecated HTML code to be sure to use web standards.
6
6
 
7
- ObsoHTML has inherent limitations and may not find all obsolete attributes and elements. If you run into a problem, please [file an issue](https://github.com/j9t/obsohtml/issues).
7
+ ObsoHTML has inherent limitations and may not find all obsolete elements and attributes. If you run into a problem, please [file an issue](https://github.com/j9t/obsohtml/issues).
8
8
 
9
9
  ## Usage
10
10
 
@@ -78,7 +78,7 @@ node bin/obsohtml.js -f ../path/to/folder
78
78
 
79
79
  ## Output
80
80
 
81
- The script will output messages to the console indicating any obsolete attributes or elements found in the scanned files, along with the file paths where they were detected.
81
+ The script will output messages to the console indicating any obsolete elements or attributes found in the scanned files, along with the file paths where they were detected.
82
82
 
83
83
  The script exits with code `1` if any obsolete HTML is found, and `0` if none is found, making it suitable for use in CI pipelines.
84
84
 
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "dependencies": {
7
7
  "commander": "^14.0.0"
8
8
  },
9
- "description": "Obsolete and proprietary HTML finder",
9
+ "description": "HTML checker for obsolete and proprietary elements and attributes",
10
10
  "funding": "https://github.com/j9t/obsohtml?sponsor=1",
11
11
  "homepage": "https://github.com/j9t/obsohtml",
12
12
  "keywords": [
@@ -33,5 +33,5 @@
33
33
  "test": "node --test bin/obsohtml.test.js"
34
34
  },
35
35
  "type": "module",
36
- "version": "1.9.8"
36
+ "version": "1.9.9"
37
37
  }