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

update minify

This commit is contained in:
s2
2020-02-07 22:55:28 +01:00
parent 439b2733a6
commit 9dc253a6be
77 changed files with 6154 additions and 24560 deletions

10
node_modules/try-catch/ChangeLog generated vendored
View File

@@ -1,3 +1,13 @@
2019.09.12, v2.0.1
feature:
- (try-catch) add madrun
- (package) eslint v6.3.0
- (package) nyc v14.1.1
- (package) nyc v12.0.2
- (try-catch) changed the way result is returned
2018.02.08, v2.0.0
feature:

28
node_modules/try-catch/README.md generated vendored
View File

@@ -1,11 +1,29 @@
# TryCatch
# Try Catch [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
`Try-catch` wrapper.
[NPMIMGURL]: https://img.shields.io/npm/v/try-catch.svg?style=flat
[BuildStatusIMGURL]: https://img.shields.io/travis/coderaiser/try-catch/master.svg?style=flat
[DependencyStatusIMGURL]: https://img.shields.io/david/coderaiser/try-catch.svg?style=flat
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
[NPMURL]: https://npmjs.org/package/try-catch "npm"
[BuildStatusURL]: https://travis-ci.org/coderaiser/try-catch "Build Status"
[DependencyStatusURL]: https://david-dm.org/coderaiser/try-catch "Dependency Status"
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
[CoverageURL]: https://coveralls.io/github/coderaiser/readify?branch=master
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser/readify/badge.svg?branch=master&service=github
Functional `try-catch` wrapper
## Install
```
npm i try-catch
```
## Example
```js
const tryCatch = require('tryCatch');
const tryCatch = require('try-catch');
const {parse} = JSON;
const [error, result] = tryCatch(parse, 'hello');
@@ -14,6 +32,10 @@ if (error)
```
## Related
- [try-to-catch](https://github.com/coderaiser/try-to-catch "TryToCatch") - functional try-catch wrapper for promises.
## License
MIT

33
node_modules/try-catch/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{
"_from": "try-catch@^2.0.0",
"_id": "try-catch@2.0.0",
"_id": "try-catch@2.0.1",
"_inBundle": false,
"_integrity": "sha512-RPXpVjsbtWgymwGq5F/OWDFsjEzdvzwHFaMjWWW6f/p6+uk/N7YSKJHQfIfGqITfj8qH4cBqCLMnhKZBaKk7Kg==",
"_integrity": "sha512-LsOrmObN/2WdM+y2xG+t16vhYrQsnV8wftXIcIOWZhQcBJvKGYuamJGwnU98A7Jxs2oZNkJztXlphEOoA0DWqg==",
"_location": "/try-catch",
"_phantomChildren": {},
"_requested": {
@@ -18,10 +18,10 @@
"_requiredBy": [
"/minify"
],
"_resolved": "https://registry.npmjs.org/try-catch/-/try-catch-2.0.0.tgz",
"_shasum": "a491141d597f8b72b46757fe1c47059341a16aed",
"_resolved": "https://registry.npmjs.org/try-catch/-/try-catch-2.0.1.tgz",
"_shasum": "a35d354187c422f291a0bcfd9eb77e3a4f90c1e5",
"_spec": "try-catch@^2.0.0",
"_where": "F:\\projects\\p\\minifyfromhtml\\node_modules\\minify",
"_where": "/home/s2/Code/minifyfromhtml/node_modules/minify",
"author": {
"name": "coderaiser",
"email": "mnemonic.enemy@gmail.com",
@@ -33,12 +33,16 @@
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "try-catch wrapper",
"description": "functional try-catch wrapper",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"nyc": "^11.4.1",
"tape": "^4.8.0"
"eslint": "^6.3.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-putout": "^2.0.0",
"madrun": "^3.0.3",
"nyc": "^14.1.1",
"putout": "^5.27.0",
"supertape": "^1.2.3"
},
"engines": {
"node": ">=0.4"
@@ -52,10 +56,11 @@
"url": "git://github.com/coderaiser/try-catch.git"
},
"scripts": {
"coverage": "nyc npm test",
"lint": "eslint lib test",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "tape 'test/*.js'"
"coverage": "madrun coverage",
"fix:lint": "madrun fix:lint",
"lint": "madrun lint",
"report": "madrun report",
"test": "madrun test"
},
"version": "2.0.0"
"version": "2.0.1"
}