1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-02 20:00:05 +02:00

update node modules

This commit is contained in:
s2
2021-06-19 01:25:45 +02:00
parent ef3070bdb7
commit cea9885dde
658 changed files with 5044 additions and 80808 deletions

2
node_modules/whatwg-url/README.md generated vendored
View File

@@ -4,7 +4,7 @@ whatwg-url is a full implementation of the WHATWG [URL Standard](https://url.spe
## Specification conformance
whatwg-url is currently up to date with the URL spec up to commit [0915d88](https://github.com/whatwg/url/commit/0915d886bbf409331857f56e6d2bfd0cb5e01de7).
whatwg-url is currently up to date with the URL spec up to commit [6d4669a](https://github.com/whatwg/url/commit/6d4669a9a8cc90582bdb1e3cdb758e45242812b0).
For `file:` URLs, whose [origin is left unspecified](https://url.spec.whatwg.org/#concept-url-origin), whatwg-url chooses to use a new opaque origin (which serializes to `"null"`).

View File

@@ -756,6 +756,10 @@ URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
return failure;
}
if (this.stateOverride === "hostname") {
return false;
}
const host = parseHost(this.buffer, isNotSpecial(this.url));
if (host === failure) {
return failure;
@@ -764,9 +768,6 @@ URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
this.url.host = host;
this.buffer = "";
this.state = "port";
if (this.stateOverride === "hostname") {
return false;
}
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
(isSpecial(this.url) && c === 92)) {
--this.pointer;

20
node_modules/whatwg-url/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{
"_from": "whatwg-url@^8.5.0",
"_id": "whatwg-url@8.5.0",
"_id": "whatwg-url@8.6.0",
"_inBundle": false,
"_integrity": "sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==",
"_integrity": "sha512-os0KkeeqUOl7ccdDT1qqUcS4KH4tcBTSKK5Nl5WKb2lyxInIZ/CpjkqKa1Ss12mjfdcRX9mHmPPs7/SxG1Hbdw==",
"_location": "/whatwg-url",
"_phantomChildren": {},
"_requested": {
@@ -19,8 +19,8 @@
"/data-urls",
"/jsdom"
],
"_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz",
"_shasum": "7752b8464fc0903fec89aa9846fc9efe07351fd3",
"_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.6.0.tgz",
"_shasum": "27c0205a4902084b872aecb97cf0f2a7a3011f4c",
"_spec": "whatwg-url@^8.5.0",
"_where": "D:\\Projects\\minifyfromhtml\\node_modules\\jsdom",
"author": {
@@ -33,7 +33,7 @@
"bundleDependencies": false,
"dependencies": {
"lodash": "^4.7.0",
"tr46": "^2.0.2",
"tr46": "^2.1.0",
"webidl-conversions": "^6.1.0"
},
"deprecated": false,
@@ -41,10 +41,10 @@
"devDependencies": {
"browserify": "^17.0.0",
"domexception": "^2.0.1",
"eslint": "^7.20.0",
"glob": "^7.1.6",
"got": "^11.8.1",
"jest": "^26.6.3",
"eslint": "^7.28.0",
"glob": "^7.1.7",
"got": "^11.8.2",
"jest": "^27.0.4",
"recast": "^0.20.4",
"webidl2js": "^16.2.0"
},
@@ -91,5 +91,5 @@
"pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js",
"test": "jest"
},
"version": "8.5.0"
"version": "8.6.0"
}