check-html-links
Advanced tools
Comparing version 0.2.1 to 0.2.2
# check-html-links | ||
## 0.2.2 | ||
### Patch Changes | ||
- 66c2d78: fix: windows path issue | ||
## 0.2.1 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "check-html-links", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"publishConfig": { | ||
@@ -16,2 +16,3 @@ "access": "public" | ||
"homepage": "https://rocket.modern-web.dev/docs/tools/check-html-links/", | ||
"main": "./index.js", | ||
"bin": { | ||
@@ -21,3 +22,2 @@ "check-html-links": "src/cli.js" | ||
"type": "module", | ||
"main": "./index.js", | ||
"exports": { | ||
@@ -24,0 +24,0 @@ ".": "./index.js" |
@@ -9,2 +9,3 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */ | ||
import path from 'path'; | ||
import slash from 'slash'; | ||
@@ -49,3 +50,3 @@ /** @typedef {import('../types/main').Link} Link */ | ||
const attributeName = data.name.toString(); | ||
const value = data.value.toString(); | ||
const value = slash(data.value.toString()); | ||
const entry = { | ||
@@ -52,0 +53,0 @@ attribute: attributeName, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82747
537