mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
add some packages
This commit is contained in:
166
node_modules/babel-preset-minify/README.md
generated
vendored
Normal file
166
node_modules/babel-preset-minify/README.md
generated
vendored
Normal file
@@ -0,0 +1,166 @@
|
||||
# babel-preset-minify
|
||||
|
||||
Babel preset for all minify plugins.
|
||||
|
||||
+ [Install](#install)
|
||||
+ [Usage](#usage)
|
||||
+ [Options](#options)
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install --save-dev babel-preset-minify
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
### Via `.babelrc` (Recommended)
|
||||
|
||||
**.babelrc**
|
||||
|
||||
```json
|
||||
{
|
||||
"presets": ["minify"]
|
||||
}
|
||||
```
|
||||
|
||||
or pass in options -
|
||||
|
||||
```json
|
||||
{
|
||||
"presets": [["minify", {
|
||||
"mangle": {
|
||||
"exclude": ["MyCustomError"]
|
||||
},
|
||||
"unsafe": {
|
||||
"typeConstructors": false
|
||||
},
|
||||
"keepFnName": true
|
||||
}]]
|
||||
}
|
||||
```
|
||||
|
||||
### Via CLI
|
||||
|
||||
```sh
|
||||
babel script.js --presets minify
|
||||
```
|
||||
|
||||
### Via Node API
|
||||
|
||||
```javascript
|
||||
require("@babel/core").transform("code", {
|
||||
presets: ["minify"]
|
||||
});
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
Two types of options:
|
||||
|
||||
1. 1-1 mapping with plugin
|
||||
2. The same option passed to multiple plugins
|
||||
|
||||
#### 1-1 mapping with plugin
|
||||
|
||||
+ `false` - disable plugin
|
||||
+ `true` - enable plugin
|
||||
+ `{ ...pluginOpts }` - enable plugin and pass pluginOpts to plugin
|
||||
|
||||
OptionName | Plugin | DefaultValue
|
||||
---------- | ------ | ------------
|
||||
booleans | [transform-minify-booleans][booleans] | true
|
||||
builtIns | [minify-builtins][builtIns] | true
|
||||
consecutiveAdds | [transform-inline-consecutive-adds][consecutiveAdds] | true
|
||||
deadcode | [minify-dead-code-elimination][deadcode] | true
|
||||
evaluate | [minify-constant-folding][evaluate] | true
|
||||
flipComparisons | [minify-flip-comparisons][flipComparisons] | true
|
||||
guards | [minify-guarded-expressions][guards] | true
|
||||
infinity | [minify-infinity][infinity] | true
|
||||
mangle | [minify-mangle-names][mangle] | true
|
||||
memberExpressions | [transform-member-expression-literals][memberExpressions] | true
|
||||
mergeVars | [transform-merge-sibling-variables][mergeVars] | true
|
||||
numericLiterals | [minify-numeric-literals][numericLiterals] | true
|
||||
propertyLiterals | [transform-property-literals][propertyLiterals] | true
|
||||
regexpConstructors | [transform-regexp-constructors][regexpConstructors] | true
|
||||
removeConsole | [transform-remove-console][removeConsole] | false
|
||||
removeDebugger | [transform-remove-debugger][removeDebugger] | false
|
||||
removeUndefined | [transform-remove-undefined][removeUndefined] | true
|
||||
replace | [minify-replace][replace] | true
|
||||
simplify | [minify-simplify][simplify] | true
|
||||
simplifyComparisons | [transform-simplify-comparison-operators][simplifyComparisons] | true
|
||||
typeConstructors | [minify-type-constructors][typeConstructors] | true
|
||||
undefinedToVoid | [transform-undefined-to-void][undefinedToVoid] | true
|
||||
|
||||
#### The same option passed to multiple plugins
|
||||
|
||||
+ When multiple plugins require the same option, it's easier to declare it in one place. These options are passed on to two or more plugins.
|
||||
|
||||
OptionName | Plugins
|
||||
---------- | -------
|
||||
keepFnName | Passed to [mangle][mangle] & [deadcode][deadcode]
|
||||
keepClassName | Passed to [mangle][mangle] & [deadcode][deadcode]
|
||||
tdz | Passed to [builtIns][builtIns], [evaluate][evaluate], [deadcode][deadcode], [removeUndefined][removeUndefined]
|
||||
|
||||
**Examples**
|
||||
|
||||
```json
|
||||
{
|
||||
"presets": [["minify", {
|
||||
"evaluate": false,
|
||||
"mangle": true
|
||||
}]]
|
||||
}
|
||||
```
|
||||
|
||||
```json
|
||||
{
|
||||
"presets": [["minify", {
|
||||
"mangle": {
|
||||
"exclude": ["ParserError", "NetworkError"]
|
||||
}
|
||||
}]]
|
||||
}
|
||||
```
|
||||
|
||||
```json
|
||||
{
|
||||
"presets": [["minify", {
|
||||
"keepFnName": true
|
||||
}]]
|
||||
}
|
||||
// is the same as
|
||||
{
|
||||
"presets": [["minify", {
|
||||
"mangle": {
|
||||
"keepFnName": true
|
||||
},
|
||||
"deadcode": {
|
||||
"keepFnName": true
|
||||
}
|
||||
}]]
|
||||
}
|
||||
```
|
||||
|
||||
[booleans]: ../../packages/babel-plugin-transform-minify-booleans
|
||||
[builtIns]: ../../packages/babel-plugin-minify-builtins
|
||||
[consecutiveAdds]: ../../packages/babel-plugin-transform-inline-consecutive-adds
|
||||
[deadcode]: ../../packages/babel-plugin-minify-dead-code-elimination
|
||||
[evaluate]: ../../packages/babel-plugin-minify-constant-folding
|
||||
[flipComparisons]: ../../packages/babel-plugin-minify-flip-comparisons
|
||||
[guards]: ../../packages/babel-plugin-minify-guarded-expressions
|
||||
[infinity]: ../../packages/babel-plugin-minify-infinity
|
||||
[mangle]: ../../packages/babel-plugin-minify-mangle-names
|
||||
[memberExpressions]: ../../packages/babel-plugin-transform-member-expression-literals
|
||||
[mergeVars]: ../../packages/babel-plugin-transform-merge-sibling-variables
|
||||
[numericLiterals]: ../../packages/babel-plugin-minify-numeric-literals
|
||||
[propertyLiterals]: ../../packages/babel-plugin-transform-property-literals
|
||||
[regexpConstructors]: ../../packages/babel-plugin-transform-regexp-constructors
|
||||
[removeConsole]: ../../packages/babel-plugin-transform-remove-console
|
||||
[removeDebugger]: ../../packages/babel-plugin-transform-remove-debugger
|
||||
[removeUndefined]: ../../packages/babel-plugin-transform-remove-undefined
|
||||
[replace]: ../../packages/babel-plugin-minify-replace
|
||||
[simplify]: ../../packages/babel-plugin-minify-simplify
|
||||
[simplifyComparisons]: ../../packages/babel-plugin-transform-simplify-comparison-operators
|
||||
[typeConstructors]: ../../packages/babel-plugin-minify-type-constructors
|
||||
[undefinedToVoid]: ../../packages/babel-plugin-transform-undefined-to-void
|
110
node_modules/babel-preset-minify/lib/index.js
generated
vendored
Normal file
110
node_modules/babel-preset-minify/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,110 @@
|
||||
"use strict";
|
||||
|
||||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
||||
|
||||
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
||||
|
||||
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
||||
|
||||
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
||||
|
||||
const isPlainObject = require("lodash.isplainobject"); // the flat plugin map
|
||||
// This is to prevent dynamic requires - require('babel-plugin-' + name);
|
||||
// as it suffers during bundling of this code with webpack/browserify
|
||||
// sorted by option name
|
||||
// prettier-ignore
|
||||
|
||||
|
||||
const PLUGINS = [// [optionname, plugin, default],
|
||||
["booleans", require("babel-plugin-transform-minify-booleans"), true], ["builtIns", require("babel-plugin-minify-builtins"), true], ["consecutiveAdds", require("babel-plugin-transform-inline-consecutive-adds"), true], ["deadcode", require("babel-plugin-minify-dead-code-elimination"), true], ["evaluate", require("babel-plugin-minify-constant-folding"), true], ["flipComparisons", require("babel-plugin-minify-flip-comparisons"), true], ["guards", require("babel-plugin-minify-guarded-expressions"), true], ["infinity", require("babel-plugin-minify-infinity"), true], ["mangle", require("babel-plugin-minify-mangle-names"), true], ["memberExpressions", require("babel-plugin-transform-member-expression-literals"), true], ["mergeVars", require("babel-plugin-transform-merge-sibling-variables"), true], ["numericLiterals", require("babel-plugin-minify-numeric-literals"), true], ["propertyLiterals", require("babel-plugin-transform-property-literals"), true], ["regexpConstructors", require("babel-plugin-transform-regexp-constructors"), true], ["removeConsole", require("babel-plugin-transform-remove-console"), false], ["removeDebugger", require("babel-plugin-transform-remove-debugger"), false], ["removeUndefined", require("babel-plugin-transform-remove-undefined"), true], ["replace", require("babel-plugin-minify-replace"), true], ["simplify", require("babel-plugin-minify-simplify"), true], ["simplifyComparisons", require("babel-plugin-transform-simplify-comparison-operators"), true], ["typeConstructors", require("babel-plugin-minify-type-constructors"), true], ["undefinedToVoid", require("babel-plugin-transform-undefined-to-void"), true]];
|
||||
const PROXIES = {
|
||||
keepFnName: ["mangle", "deadcode"],
|
||||
keepClassName: ["mangle", "deadcode"],
|
||||
tdz: ["builtIns", "evaluate", "deadcode", "removeUndefined"]
|
||||
};
|
||||
module.exports = preset;
|
||||
|
||||
function preset(context, _opts = {}) {
|
||||
const opts = isPlainObject(_opts) ? _opts : {}; // validate options
|
||||
|
||||
const validOptions = [...PLUGINS.map(p => p[0]), ...Object.keys(PROXIES)];
|
||||
|
||||
for (let name in opts) {
|
||||
if (validOptions.indexOf(name) < 0) {
|
||||
throw new Error(`Invalid option "${name}"`);
|
||||
}
|
||||
} // build a plugins map from the plugin table above
|
||||
|
||||
|
||||
const pluginsMap = PLUGINS.reduce((acc, [name, plugin, defaultValue]) => Object.assign(acc, {
|
||||
[name]: {
|
||||
plugin,
|
||||
options: null,
|
||||
enabled: defaultValue
|
||||
}
|
||||
}), {}); // handle plugins and their options
|
||||
|
||||
for (var _i = 0; _i < PLUGINS.length; _i++) {
|
||||
const _PLUGINS$_i = _slicedToArray(PLUGINS[_i], 1),
|
||||
name = _PLUGINS$_i[0];
|
||||
|
||||
if (isPlainObject(opts[name])) {
|
||||
// for plugins disabled by default
|
||||
pluginsMap[name].enabled = true;
|
||||
pluginsMap[name].options = opts[name];
|
||||
} else if (opts[name] !== void 0) {
|
||||
pluginsMap[name].enabled = !!opts[name];
|
||||
}
|
||||
} // handle proxies
|
||||
|
||||
|
||||
for (let proxyname in PROXIES) {
|
||||
if (opts[proxyname] !== void 0) {
|
||||
var _iteratorNormalCompletion = true;
|
||||
var _didIteratorError = false;
|
||||
var _iteratorError = undefined;
|
||||
|
||||
try {
|
||||
for (var _iterator = PROXIES[proxyname][Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
||||
const to = _step.value;
|
||||
|
||||
if (!pluginsMap[to].options) {
|
||||
pluginsMap[to].options = {};
|
||||
}
|
||||
|
||||
if (!hop(pluginsMap[to].options, proxyname)) {
|
||||
pluginsMap[to].options[proxyname] = opts[proxyname];
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
_didIteratorError = true;
|
||||
_iteratorError = err;
|
||||
} finally {
|
||||
try {
|
||||
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
||||
_iterator.return();
|
||||
}
|
||||
} finally {
|
||||
if (_didIteratorError) {
|
||||
throw _iteratorError;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} // get the array of plugins
|
||||
|
||||
|
||||
const plugins = Object.keys(pluginsMap).map(name => pluginsMap[name]).filter(plugin => plugin.enabled).map(plugin => plugin.options ? [plugin.plugin, plugin.options] : plugin.plugin);
|
||||
return {
|
||||
minified: true,
|
||||
comments: false,
|
||||
presets: [{
|
||||
plugins
|
||||
}],
|
||||
passPerPreset: true
|
||||
};
|
||||
}
|
||||
|
||||
function hop(o, key) {
|
||||
return Object.prototype.hasOwnProperty.call(o, key);
|
||||
}
|
74
node_modules/babel-preset-minify/package.json
generated
vendored
Normal file
74
node_modules/babel-preset-minify/package.json
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"_from": "babel-preset-minify",
|
||||
"_id": "babel-preset-minify@0.4.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-QOPtrXQ7sQfdY8fPshxgTczYNnQ=",
|
||||
"_location": "/babel-preset-minify",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"registry": true,
|
||||
"raw": "babel-preset-minify",
|
||||
"name": "babel-preset-minify",
|
||||
"escapedName": "babel-preset-minify",
|
||||
"rawSpec": "",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/babel-preset-minify/-/babel-preset-minify-0.4.1.tgz",
|
||||
"_shasum": "40e3edad743bb107dd63c7cfb21c604dccd83674",
|
||||
"_spec": "babel-preset-minify",
|
||||
"_where": "/home/s2/Documents/Code/minifyfromhtml",
|
||||
"author": {
|
||||
"name": "amasad"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/minify/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"babel-plugin-minify-builtins": "^0.4.1",
|
||||
"babel-plugin-minify-constant-folding": "^0.4.1",
|
||||
"babel-plugin-minify-dead-code-elimination": "^0.4.1",
|
||||
"babel-plugin-minify-flip-comparisons": "^0.4.1",
|
||||
"babel-plugin-minify-guarded-expressions": "^0.4.1",
|
||||
"babel-plugin-minify-infinity": "^0.4.1",
|
||||
"babel-plugin-minify-mangle-names": "^0.4.1",
|
||||
"babel-plugin-minify-numeric-literals": "^0.4.1",
|
||||
"babel-plugin-minify-replace": "^0.4.1",
|
||||
"babel-plugin-minify-simplify": "^0.4.1",
|
||||
"babel-plugin-minify-type-constructors": "^0.4.1",
|
||||
"babel-plugin-transform-inline-consecutive-adds": "^0.4.1",
|
||||
"babel-plugin-transform-member-expression-literals": "^6.9.2",
|
||||
"babel-plugin-transform-merge-sibling-variables": "^6.9.2",
|
||||
"babel-plugin-transform-minify-booleans": "^6.9.2",
|
||||
"babel-plugin-transform-property-literals": "^6.9.2",
|
||||
"babel-plugin-transform-regexp-constructors": "^0.4.1",
|
||||
"babel-plugin-transform-remove-console": "^6.9.2",
|
||||
"babel-plugin-transform-remove-debugger": "^6.9.2",
|
||||
"babel-plugin-transform-remove-undefined": "^0.4.1",
|
||||
"babel-plugin-transform-simplify-comparison-operators": "^6.9.2",
|
||||
"babel-plugin-transform-undefined-to-void": "^6.9.2",
|
||||
"lodash.isplainobject": "^4.0.6"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Babel preset for all minify plugins.",
|
||||
"homepage": "https://github.com/babel/minify#readme",
|
||||
"keywords": [
|
||||
"babel-minify",
|
||||
"babel-preset",
|
||||
"minify"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "babel-preset-minify",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/minify/tree/master/packages/babel-preset-minify"
|
||||
},
|
||||
"version": "0.4.1"
|
||||
}
|
Reference in New Issue
Block a user