mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-02 12:00:03 +02:00
update node modules
This commit is contained in:
16
node_modules/.bin/acorn
generated
vendored
16
node_modules/.bin/acorn
generated
vendored
@@ -1,15 +1 @@
|
|||||||
#!/bin/sh
|
../acorn/bin/acorn
|
||||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
||||||
|
|
||||||
case `uname` in
|
|
||||||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -x "$basedir/node" ]; then
|
|
||||||
"$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
|
|
||||||
ret=$?
|
|
||||||
else
|
|
||||||
node "$basedir/../acorn/bin/acorn" "$@"
|
|
||||||
ret=$?
|
|
||||||
fi
|
|
||||||
exit $ret
|
|
8
node_modules/acorn/dist/acorn.js
generated
vendored
8
node_modules/acorn/dist/acorn.js
generated
vendored
@@ -3206,7 +3206,8 @@
|
|||||||
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
return (c << 10) + s.charCodeAt(i + 1) - 0x35FDC00
|
var next = s.charCodeAt(i + 1);
|
||||||
|
return next >= 0xDC00 && next <= 0xDFFF ? (c << 10) + next - 0x35FDC00 : c
|
||||||
};
|
};
|
||||||
|
|
||||||
RegExpValidationState.prototype.nextIndex = function nextIndex (i) {
|
RegExpValidationState.prototype.nextIndex = function nextIndex (i) {
|
||||||
@@ -3215,8 +3216,9 @@
|
|||||||
if (i >= l) {
|
if (i >= l) {
|
||||||
return l
|
return l
|
||||||
}
|
}
|
||||||
var c = s.charCodeAt(i);
|
var c = s.charCodeAt(i), next;
|
||||||
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l ||
|
||||||
|
(next = s.charCodeAt(i + 1)) < 0xDC00 || next > 0xDFFF) {
|
||||||
return i + 1
|
return i + 1
|
||||||
}
|
}
|
||||||
return i + 2
|
return i + 2
|
||||||
|
8
node_modules/acorn/dist/acorn.mjs
generated
vendored
8
node_modules/acorn/dist/acorn.mjs
generated
vendored
@@ -3200,7 +3200,8 @@ RegExpValidationState.prototype.at = function at (i) {
|
|||||||
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
return (c << 10) + s.charCodeAt(i + 1) - 0x35FDC00
|
var next = s.charCodeAt(i + 1);
|
||||||
|
return next >= 0xDC00 && next <= 0xDFFF ? (c << 10) + next - 0x35FDC00 : c
|
||||||
};
|
};
|
||||||
|
|
||||||
RegExpValidationState.prototype.nextIndex = function nextIndex (i) {
|
RegExpValidationState.prototype.nextIndex = function nextIndex (i) {
|
||||||
@@ -3209,8 +3210,9 @@ RegExpValidationState.prototype.nextIndex = function nextIndex (i) {
|
|||||||
if (i >= l) {
|
if (i >= l) {
|
||||||
return l
|
return l
|
||||||
}
|
}
|
||||||
var c = s.charCodeAt(i);
|
var c = s.charCodeAt(i), next;
|
||||||
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l) {
|
if (!this.switchU || c <= 0xD7FF || c >= 0xE000 || i + 1 >= l ||
|
||||||
|
(next = s.charCodeAt(i + 1)) < 0xDC00 || next > 0xDFFF) {
|
||||||
return i + 1
|
return i + 1
|
||||||
}
|
}
|
||||||
return i + 2
|
return i + 2
|
||||||
|
24
node_modules/acorn/package.json
generated
vendored
24
node_modules/acorn/package.json
generated
vendored
@@ -1,28 +1,28 @@
|
|||||||
{
|
{
|
||||||
"_from": "acorn@^6.0.4",
|
"_from": "acorn@6.4.1",
|
||||||
"_id": "acorn@6.4.0",
|
"_id": "acorn@6.4.1",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==",
|
"_integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==",
|
||||||
"_location": "/acorn",
|
"_location": "/acorn",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "range",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "acorn@^6.0.4",
|
"raw": "acorn@6.4.1",
|
||||||
"name": "acorn",
|
"name": "acorn",
|
||||||
"escapedName": "acorn",
|
"escapedName": "acorn",
|
||||||
"rawSpec": "^6.0.4",
|
"rawSpec": "6.4.1",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "^6.0.4"
|
"fetchSpec": "6.4.1"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/acorn-globals",
|
"/acorn-globals",
|
||||||
"/jsdom"
|
"/jsdom"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz",
|
"_resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
|
||||||
"_shasum": "b659d2ffbafa24baf5db1cdbb2c94a983ecd2784",
|
"_shasum": "531e58ba3f51b9dacb9a6646ca4debf5b14ca474",
|
||||||
"_spec": "acorn@^6.0.4",
|
"_spec": "acorn@6.4.1",
|
||||||
"_where": "F:\\projects\\p\\minifyfromhtml\\node_modules\\jsdom",
|
"_where": "/home/s2/Code/minifyfromhtml/node_modules/jsdom",
|
||||||
"bin": {
|
"bin": {
|
||||||
"acorn": "bin/acorn"
|
"acorn": "bin/acorn"
|
||||||
},
|
},
|
||||||
@@ -63,5 +63,5 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "cd ..; npm run build:main && npm run build:bin"
|
"prepare": "cd ..; npm run build:main && npm run build:bin"
|
||||||
},
|
},
|
||||||
"version": "6.4.0"
|
"version": "6.4.1"
|
||||||
}
|
}
|
||||||
|
6
package-lock.json
generated
6
package-lock.json
generated
@@ -10,9 +10,9 @@
|
|||||||
"integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg=="
|
"integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg=="
|
||||||
},
|
},
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "6.4.0",
|
"version": "6.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
|
||||||
"integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw=="
|
"integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA=="
|
||||||
},
|
},
|
||||||
"acorn-globals": {
|
"acorn-globals": {
|
||||||
"version": "4.3.4",
|
"version": "4.3.4",
|
||||||
|
Reference in New Issue
Block a user