From aba138bab36ad0f1b9eded3357bc32b2fbde5b50 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 30 Aug 2023 17:22:34 +0200 Subject: [PATCH] 7.0.0 --- packages/hast-util-from-string/package.json | 2 +- packages/hast-util-from-string/readme.md | 6 +-- .../hast-util-is-body-ok-link/package.json | 2 +- packages/hast-util-is-body-ok-link/readme.md | 6 +-- .../package.json | 2 +- .../readme.md | 6 +-- packages/hast-util-is-css-link/package.json | 2 +- packages/hast-util-is-css-link/readme.md | 6 +-- packages/hast-util-is-css-style/package.json | 2 +- packages/hast-util-is-css-style/readme.md | 6 +-- .../hast-util-is-event-handler/package.json | 2 +- packages/hast-util-is-event-handler/readme.md | 6 +-- packages/hast-util-is-javascript/package.json | 2 +- packages/hast-util-is-javascript/readme.md | 6 +-- packages/hast-util-to-string/package.json | 2 +- packages/hast-util-to-string/readme.md | 6 +-- .../html-enumerated-attributes/package.json | 2 +- packages/html-enumerated-attributes/readme.md | 6 +-- packages/html-url-attributes/package.json | 2 +- packages/html-url-attributes/readme.md | 6 +-- .../package.json | 2 +- .../readme.md | 6 +-- packages/rehype-concat-css-style/package.json | 8 ++-- packages/rehype-concat-css-style/readme.md | 6 +-- .../rehype-concat-javascript/package.json | 8 ++-- packages/rehype-concat-javascript/readme.md | 6 +-- packages/rehype-css-to-top/package.json | 4 +- packages/rehype-css-to-top/readme.md | 6 +-- .../rehype-javascript-to-bottom/package.json | 4 +- .../rehype-javascript-to-bottom/readme.md | 6 +-- .../package.json | 4 +- .../readme.md | 6 +-- packages/rehype-minify-css-style/package.json | 8 ++-- packages/rehype-minify-css-style/readme.md | 6 +-- .../package.json | 4 +- .../readme.md | 6 +-- .../rehype-minify-event-handler/package.json | 4 +- .../rehype-minify-event-handler/readme.md | 6 +-- .../package.json | 8 ++-- .../rehype-minify-javascript-script/readme.md | 6 +-- .../rehype-minify-javascript-url/package.json | 4 +- .../rehype-minify-javascript-url/readme.md | 6 +-- .../rehype-minify-json-script/package.json | 6 +-- packages/rehype-minify-json-script/readme.md | 6 +-- packages/rehype-minify-language/package.json | 2 +- packages/rehype-minify-language/readme.md | 6 +-- .../package.json | 2 +- .../rehype-minify-media-attribute/readme.md | 6 +-- .../rehype-minify-meta-color/package.json | 2 +- packages/rehype-minify-meta-color/readme.md | 6 +-- .../rehype-minify-meta-content/package.json | 2 +- packages/rehype-minify-meta-content/readme.md | 6 +-- .../package.json | 2 +- .../rehype-minify-style-attribute/readme.md | 6 +-- packages/rehype-minify-url/package.json | 4 +- packages/rehype-minify-url/readme.md | 6 +-- .../rehype-minify-whitespace/package.json | 2 +- packages/rehype-minify-whitespace/readme.md | 6 +-- .../package.json | 2 +- .../readme.md | 6 +-- packages/rehype-preset-minify/package.json | 48 +++++++++---------- packages/rehype-preset-minify/readme.md | 6 +-- .../package.json | 2 +- .../rehype-prevent-favicon-request/readme.md | 6 +-- packages/rehype-remove-comments/package.json | 4 +- packages/rehype-remove-comments/readme.md | 6 +-- .../package.json | 2 +- .../readme.md | 6 +-- .../package.json | 4 +- .../rehype-remove-empty-attribute/readme.md | 6 +-- .../package.json | 4 +- .../readme.md | 6 +-- .../package.json | 2 +- .../rehype-remove-meta-http-equiv/readme.md | 6 +-- .../package.json | 4 +- .../readme.md | 6 +-- .../rehype-remove-style-type-css/package.json | 6 +-- .../rehype-remove-style-type-css/readme.md | 6 +-- .../rehype-sort-attribute-values/package.json | 2 +- .../rehype-sort-attribute-values/readme.md | 6 +-- packages/rehype-sort-attributes/package.json | 2 +- packages/rehype-sort-attributes/readme.md | 6 +-- 82 files changed, 214 insertions(+), 214 deletions(-) diff --git a/packages/hast-util-from-string/package.json b/packages/hast-util-from-string/package.json index 896382d..aee670a 100644 --- a/packages/hast-util-from-string/package.json +++ b/packages/hast-util-from-string/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-from-string", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to set the plain-text value of a node", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-from-string/readme.md b/packages/hast-util-from-string/readme.md index 87831ba..3a20ac6 100644 --- a/packages/hast-util-from-string/readme.md +++ b/packages/hast-util-from-string/readme.md @@ -56,14 +56,14 @@ npm install hast-util-from-string In Deno with [`esm.sh`][esm-sh]: ```js -import {fromString} from 'https://esm.sh/hast-util-from-string@2' +import {fromString} from 'https://esm.sh/hast-util-from-string@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -136,7 +136,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-from-string@^2`, +`hast-util-from-string@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-body-ok-link/package.json b/packages/hast-util-is-body-ok-link/package.json index b4e5501..5601819 100644 --- a/packages/hast-util-is-body-ok-link/package.json +++ b/packages/hast-util-is-body-ok-link/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-body-ok-link", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if a link element is “Body OK”", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-body-ok-link/readme.md b/packages/hast-util-is-body-ok-link/readme.md index 3783dda..e5ca798 100644 --- a/packages/hast-util-is-body-ok-link/readme.md +++ b/packages/hast-util-is-body-ok-link/readme.md @@ -50,14 +50,14 @@ npm install hast-util-is-body-ok-link In Deno with [`esm.sh`][esm-sh]: ```js -import {isBodyOkLink} from 'https://esm.sh/hast-util-is-body-ok-link@2' +import {isBodyOkLink} from 'https://esm.sh/hast-util-is-body-ok-link@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -117,7 +117,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-body-ok-link@^2`, +`hast-util-is-body-ok-link@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-conditional-comment/package.json b/packages/hast-util-is-conditional-comment/package.json index 3947159..9bd36b7 100644 --- a/packages/hast-util-is-conditional-comment/package.json +++ b/packages/hast-util-is-conditional-comment/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-conditional-comment", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if a node is a conditional comment", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-conditional-comment/readme.md b/packages/hast-util-is-conditional-comment/readme.md index 760c404..6b70a3b 100644 --- a/packages/hast-util-is-conditional-comment/readme.md +++ b/packages/hast-util-is-conditional-comment/readme.md @@ -54,14 +54,14 @@ npm install hast-util-is-conditional-comment In Deno with [`esm.sh`][esm-sh]: ```js -import {isConditionalComment} from 'https://esm.sh/hast-util-is-conditional-comment@2' +import {isConditionalComment} from 'https://esm.sh/hast-util-is-conditional-comment@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -114,7 +114,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-conditional-comment@^2`, +`hast-util-is-conditional-comment@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-css-link/package.json b/packages/hast-util-is-css-link/package.json index 8f14e34..4e7d98d 100644 --- a/packages/hast-util-is-css-link/package.json +++ b/packages/hast-util-is-css-link/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-css-link", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if an element is a css link", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-css-link/readme.md b/packages/hast-util-is-css-link/readme.md index 5cf5adf..9d34882 100644 --- a/packages/hast-util-is-css-link/readme.md +++ b/packages/hast-util-is-css-link/readme.md @@ -50,14 +50,14 @@ npm install hast-util-is-css-link In Deno with [`esm.sh`][esm-sh]: ```js -import {isCssLink} from 'https://esm.sh/hast-util-is-css-link@2' +import {isCssLink} from 'https://esm.sh/hast-util-is-css-link@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -115,7 +115,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-css-link@^2`, +`hast-util-is-css-link@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-css-style/package.json b/packages/hast-util-is-css-style/package.json index 5491499..9426f40 100644 --- a/packages/hast-util-is-css-style/package.json +++ b/packages/hast-util-is-css-style/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-css-style", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if an element is a css style", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-css-style/readme.md b/packages/hast-util-is-css-style/readme.md index 12bf503..fbc9588 100644 --- a/packages/hast-util-is-css-style/readme.md +++ b/packages/hast-util-is-css-style/readme.md @@ -50,14 +50,14 @@ npm install hast-util-is-css-style In Deno with [`esm.sh`][esm-sh]: ```js -import {isCssStyle} from 'https://esm.sh/hast-util-is-css-style@2' +import {isCssStyle} from 'https://esm.sh/hast-util-is-css-style@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -114,7 +114,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-css-style@^2`, +`hast-util-is-css-style@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-event-handler/package.json b/packages/hast-util-is-event-handler/package.json index 6cabd61..958d463 100644 --- a/packages/hast-util-is-event-handler/package.json +++ b/packages/hast-util-is-event-handler/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-event-handler", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if a property is an event handler", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-event-handler/readme.md b/packages/hast-util-is-event-handler/readme.md index c15be90..261e274 100644 --- a/packages/hast-util-is-event-handler/readme.md +++ b/packages/hast-util-is-event-handler/readme.md @@ -52,14 +52,14 @@ npm install hast-util-is-event-handler In Deno with [`esm.sh`][esm-sh]: ```js -import {isEventHandler} from 'https://esm.sh/hast-util-is-event-handler@2' +import {isEventHandler} from 'https://esm.sh/hast-util-is-event-handler@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -115,7 +115,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-event-handler@^2`, +`hast-util-is-event-handler@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-is-javascript/package.json b/packages/hast-util-is-javascript/package.json index 6d9a8a9..f9eb8ea 100644 --- a/packages/hast-util-is-javascript/package.json +++ b/packages/hast-util-is-javascript/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-is-javascript", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to check if an element is a JavaScript script", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-is-javascript/readme.md b/packages/hast-util-is-javascript/readme.md index 4182494..4ed2318 100644 --- a/packages/hast-util-is-javascript/readme.md +++ b/packages/hast-util-is-javascript/readme.md @@ -50,14 +50,14 @@ npm install hast-util-is-javascript In Deno with [`esm.sh`][esm-sh]: ```js -import {isJavaScript} from 'https://esm.sh/hast-util-is-javascript@2' +import {isJavaScript} from 'https://esm.sh/hast-util-is-javascript@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -117,7 +117,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-is-javascript@^2`, +`hast-util-is-javascript@^3`, compatible with Node.js 16. ## Security diff --git a/packages/hast-util-to-string/package.json b/packages/hast-util-to-string/package.json index bd01e55..7d6ea86 100644 --- a/packages/hast-util-to-string/package.json +++ b/packages/hast-util-to-string/package.json @@ -1,6 +1,6 @@ { "name": "hast-util-to-string", - "version": "2.0.0", + "version": "3.0.0", "description": "hast utility to get the plain-text value of a node", "license": "MIT", "keywords": [ diff --git a/packages/hast-util-to-string/readme.md b/packages/hast-util-to-string/readme.md index 385d9c5..fab2ce1 100644 --- a/packages/hast-util-to-string/readme.md +++ b/packages/hast-util-to-string/readme.md @@ -55,14 +55,14 @@ npm install hast-util-to-string In Deno with [`esm.sh`][esm-sh]: ```js -import {toString} from 'https://esm.sh/hast-util-to-string@2' +import {toString} from 'https://esm.sh/hast-util-to-string@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -117,7 +117,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`hast-util-to-string@^2`, +`hast-util-to-string@^3`, compatible with Node.js 16. ## Security diff --git a/packages/html-enumerated-attributes/package.json b/packages/html-enumerated-attributes/package.json index f78c905..fc96511 100644 --- a/packages/html-enumerated-attributes/package.json +++ b/packages/html-enumerated-attributes/package.json @@ -1,6 +1,6 @@ { "name": "html-enumerated-attributes", - "version": "0.1.0", + "version": "1.0.0", "description": "Map of info on enumerated attributes in HTML", "license": "MIT", "keywords": [ diff --git a/packages/html-enumerated-attributes/readme.md b/packages/html-enumerated-attributes/readme.md index 0391e77..1cf41f2 100644 --- a/packages/html-enumerated-attributes/readme.md +++ b/packages/html-enumerated-attributes/readme.md @@ -50,14 +50,14 @@ npm install html-enumerated-attributes In Deno with [`esm.sh`][esm-sh]: ```js -import {enumeratedAttributes} from 'https://esm.sh/html-enumerated-attributes@0' +import {enumeratedAttributes} from 'https://esm.sh/html-enumerated-attributes@1' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -122,7 +122,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`html-enumerated-attributes@^0`, +`html-enumerated-attributes@^1`, compatible with Node.js 16. ## Security diff --git a/packages/html-url-attributes/package.json b/packages/html-url-attributes/package.json index bfcf49b..f946f38 100644 --- a/packages/html-url-attributes/package.json +++ b/packages/html-url-attributes/package.json @@ -1,6 +1,6 @@ { "name": "html-url-attributes", - "version": "2.0.0", + "version": "3.0.0", "description": "Map of URL attributes in HTML", "license": "MIT", "keywords": [ diff --git a/packages/html-url-attributes/readme.md b/packages/html-url-attributes/readme.md index a89add0..5d65d6f 100644 --- a/packages/html-url-attributes/readme.md +++ b/packages/html-url-attributes/readme.md @@ -48,14 +48,14 @@ npm install html-url-attributes In Deno with [`esm.sh`][esm-sh]: ```js -import {urlAttributes} from 'https://esm.sh/html-url-attributes@2' +import {urlAttributes} from 'https://esm.sh/html-url-attributes@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -104,7 +104,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`html-url-attributes@^2`, +`html-url-attributes@^3`, compatible with Node.js 16. ## Security diff --git a/packages/html-whitespace-sensitive-tag-names/package.json b/packages/html-whitespace-sensitive-tag-names/package.json index ed8df90..455eca2 100644 --- a/packages/html-whitespace-sensitive-tag-names/package.json +++ b/packages/html-whitespace-sensitive-tag-names/package.json @@ -1,6 +1,6 @@ { "name": "html-whitespace-sensitive-tag-names", - "version": "2.0.0", + "version": "3.0.0", "description": "List of whitespace sensitive HTML tag names", "license": "MIT", "keywords": [ diff --git a/packages/html-whitespace-sensitive-tag-names/readme.md b/packages/html-whitespace-sensitive-tag-names/readme.md index 4c1d036..fc0e643 100644 --- a/packages/html-whitespace-sensitive-tag-names/readme.md +++ b/packages/html-whitespace-sensitive-tag-names/readme.md @@ -48,14 +48,14 @@ npm install html-whitespace-sensitive-tag-names In Deno with [`esm.sh`][esm-sh]: ```js -import {whitespaceSensitiveTagNames} from 'https://esm.sh/html-whitespace-sensitive-tag-names@2' +import {whitespaceSensitiveTagNames} from 'https://esm.sh/html-whitespace-sensitive-tag-names@3' ``` In browsers with [`esm.sh`][esm-sh]: ```html ``` @@ -99,7 +99,7 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, -`html-whitespace-sensitive-tag-names@^2`, +`html-whitespace-sensitive-tag-names@^3`, compatible with Node.js 16. ## Security diff --git a/packages/rehype-concat-css-style/package.json b/packages/rehype-concat-css-style/package.json index fd1819f..6e12d77 100644 --- a/packages/rehype-concat-css-style/package.json +++ b/packages/rehype-concat-css-style/package.json @@ -1,6 +1,6 @@ { "name": "rehype-concat-css-style", - "version": "3.0.0", + "version": "4.0.0", "description": "rehype plugin to concatenate CSS `