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

update modules

This commit is contained in:
s2
2020-07-20 16:16:07 +02:00
parent 783511ce12
commit 2b23424b86
785 changed files with 91905 additions and 56057 deletions

2
node_modules/escodegen/LICENSE.BSD generated vendored
View File

@@ -1,3 +1,5 @@
Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

12
node_modules/escodegen/escodegen.js generated vendored
View File

@@ -983,7 +983,7 @@
result.push('[');
}
result.push(this.generateExpression(expr, Precedence.Sequence, E_TTT));
result.push(this.generateExpression(expr, Precedence.Assignment, E_TTT));
if (computed) {
result.push(']');
@@ -2223,13 +2223,19 @@
multiline = false;
if (expr.properties.length === 1) {
property = expr.properties[0];
if (property.value.type !== Syntax.Identifier) {
if (
property.type === Syntax.Property
&& property.value.type !== Syntax.Identifier
) {
multiline = true;
}
} else {
for (i = 0, iz = expr.properties.length; i < iz; ++i) {
property = expr.properties[i];
if (!property.shorthand) {
if (
property.type === Syntax.Property
&& !property.shorthand
) {
multiline = true;
break;
}

22
node_modules/escodegen/package.json generated vendored
View File

@@ -1,27 +1,27 @@
{
"_from": "escodegen@^1.11.0",
"_id": "escodegen@1.14.1",
"_from": "escodegen@^1.14.1",
"_id": "escodegen@1.14.3",
"_inBundle": false,
"_integrity": "sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==",
"_integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
"_location": "/escodegen",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "escodegen@^1.11.0",
"raw": "escodegen@^1.14.1",
"name": "escodegen",
"escapedName": "escodegen",
"rawSpec": "^1.11.0",
"rawSpec": "^1.14.1",
"saveSpec": null,
"fetchSpec": "^1.11.0"
"fetchSpec": "^1.14.1"
},
"_requiredBy": [
"/jsdom"
],
"_resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.1.tgz",
"_shasum": "ba01d0c8278b5e95a9a45350142026659027a457",
"_spec": "escodegen@^1.11.0",
"_where": "F:\\projects\\p\\minifyfromhtml\\node_modules\\jsdom",
"_resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
"_shasum": "4e7b81fba61581dc97582ed78cab7f0e8d63f503",
"_spec": "escodegen@^1.14.1",
"_where": "D:\\Projects\\minifyfromhtml\\node_modules\\jsdom",
"bin": {
"esgenerate": "bin/esgenerate.js",
"escodegen": "bin/escodegen.js"
@@ -86,5 +86,5 @@
"test": "gulp travis",
"unit-test": "gulp test"
},
"version": "1.14.1"
"version": "1.14.3"
}