update to eslint 7
This commit is contained in:
		| @@ -29,9 +29,9 @@ module.exports = { | ||||
|     'array-bracket-newline': 'off', | ||||
|     'max-len': 'off', | ||||
|     'func-call-spacing': 'off', | ||||
|     'semi': 'off', | ||||
|     'curly': 'off', | ||||
|     'strict': 'off', | ||||
|     semi: 'off', | ||||
|     curly: 'off', | ||||
|     strict: 'off', | ||||
|     'brace-style': 'off', | ||||
|     'no-magic-numbers': 'off' | ||||
|   } | ||||
|   | ||||
							
								
								
									
										2
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
								
							| @@ -5,7 +5,7 @@ pipeline { | ||||
|         VERSION = VersionNumber([ | ||||
|             versionNumberString: | ||||
|                 '${BUILDS_ALL_TIME}', | ||||
|             versionPrefix: '1.0.', | ||||
|             versionPrefix: '1.1.', | ||||
|             worstResultForIncrement: 'SUCCESS' | ||||
|         ]) | ||||
|     } | ||||
|   | ||||
							
								
								
									
										28
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,20 +1,20 @@ | ||||
| # Sapphirecode ESLint configuration | ||||
| # @sapphirecode/eslint-config-ts | ||||
|  | ||||
| Javascript coding standard used by Sapphirecode | ||||
| [](https://packagequality.com/#?package=%40sapphirecode%2Feslint-config-ts) | ||||
|  | ||||
| version: 1.1.x | ||||
|  | ||||
| scode eslint configuration for typescript | ||||
|  | ||||
| ## Installation | ||||
|  | ||||
| to install this module you have to add the following line to your .npmrc | ||||
| npm: | ||||
|  | ||||
| ```npmrc | ||||
| @scode:registry=https://npm.scode.ovh | ||||
| ``` | ||||
| > npm i --save-dev @sapphirecode/eslint-config-ts | ||||
|  | ||||
| then install the module and eslint | ||||
| yarn: | ||||
|  | ||||
| ```sh | ||||
| npm i --save-dev @scode/eslint-ts eslint | ||||
| ``` | ||||
| > yarn add --dev @sapphirecode/eslint-config-ts | ||||
|  | ||||
| then create a file named .eslintrc.js with the following contents. | ||||
|  | ||||
| @@ -28,9 +28,11 @@ module.exports = { | ||||
|     node: true | ||||
|   }, | ||||
|   extends: [ | ||||
|     '@scode/eslint-ts' | ||||
|     '@sapphirecode/eslint-config-ts' | ||||
|   ] | ||||
| } | ||||
| ``` | ||||
|    | ||||
| after that you can run eslint. | ||||
|  | ||||
| ## License | ||||
|  | ||||
| BSD-3-Clause © Timo Hocker | ||||
|   | ||||
| @@ -26,12 +26,12 @@ if (typeof pkg.repository === 'undefined') { | ||||
| } | ||||
|  | ||||
| function major (version) { | ||||
|   return version.replace (/\.[0-9]+$/ui, ''); | ||||
|   return version.replace (/\.[0-9x]+$/ui, ''); | ||||
| } | ||||
|  | ||||
| if (fs.existsSync ('README.md')) { | ||||
|   const readme = fs.readFileSync ('README.md', 'utf-8'); | ||||
|   const version = (/version: ([0-9.]+)/ui).exec (readme); | ||||
|   const version = (/version: ([0-9x.]+)/ui).exec (readme); | ||||
|   if ( | ||||
|     version === null | ||||
|     || major (version[1]) !== major (pkg.version) | ||||
|   | ||||
							
								
								
									
										14
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								package.json
									
									
									
									
									
								
							| @@ -14,8 +14,8 @@ | ||||
|     "url": "https://git.scode.ovh/timo/eslint-ts.git" | ||||
|   }, | ||||
|   "peerDependencies": { | ||||
|     "eslint": ">=6.8.0", | ||||
|     "typescript": ">=3.8.0" | ||||
|     "eslint": ">=7.0.0", | ||||
|     "typescript": ">=3.9.0" | ||||
|   }, | ||||
|   "keywords": [ | ||||
|     "eslint", | ||||
| @@ -24,17 +24,17 @@ | ||||
|   "author": "Timo Hocker", | ||||
|   "license": "BSD-3-Clause", | ||||
|   "devDependencies": { | ||||
|     "eslint": "^6.8.0", | ||||
|     "eslint-config-standard": "^14.1.0", | ||||
|     "eslint": "^7.0.0", | ||||
|     "eslint-config-standard": "^14.1.1", | ||||
|     "eslint-plugin-import": "^2.20.2", | ||||
|     "eslint-plugin-node": "^11.1.0", | ||||
|     "eslint-plugin-promise": "^4.2.1", | ||||
|     "eslint-plugin-standard": "^4.0.1" | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "@sapphirecode/eslint-config-es6": "^1.0.1", | ||||
|     "@typescript-eslint/eslint-plugin": "^2.26.0", | ||||
|     "@typescript-eslint/parser": "^2.26.0", | ||||
|     "@sapphirecode/eslint-config-es6": "^1.1.1", | ||||
|     "@typescript-eslint/eslint-plugin": "^2.33.0", | ||||
|     "@typescript-eslint/parser": "^2.33.0", | ||||
|     "eslint-plugin-tsdoc": "^0.2.4" | ||||
|   }, | ||||
|   "files": [ | ||||
|   | ||||
							
								
								
									
										218
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										218
									
								
								yarn.lock
									
									
									
									
									
								
							| @@ -38,20 +38,20 @@ | ||||
|   resolved "https://registry.yarnpkg.com/@microsoft/tsdoc/-/tsdoc-0.12.19.tgz#2173ccb92469aaf62031fa9499d21b16d07f9b57" | ||||
|   integrity sha512-IpgPxHrNxZiMNUSXqR1l/gePKPkfAmIKoDRP9hp7OwjU29ZR8WCJsOJ8iBKgw0Qk+pFwR+8Y1cy8ImLY6e9m4A== | ||||
|  | ||||
| "@sapphirecode/eslint-config-es6@^1.0.1": | ||||
|   version "1.0.37" | ||||
|   resolved "https://registry.yarnpkg.com/@sapphirecode/eslint-config-es6/-/eslint-config-es6-1.0.37.tgz#c54a99bb9de225e866cb7a9b57f1b9342047ed2c" | ||||
|   integrity sha512-gCWF5usY0rvILzuiWPg9qYs8lc+/vUGSM3AETFEtp8njDc4mDdUU3GO7dzOwCDk68CUjgPIH8iPEFkybOflNBw== | ||||
| "@sapphirecode/eslint-config-es6@^1.1.1": | ||||
|   version "1.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/@sapphirecode/eslint-config-es6/-/eslint-config-es6-1.1.1.tgz#d718442eeddc166ae5eadbf6752b25c315d6e7a9" | ||||
|   integrity sha512-hRf7UJup+zklvy7x+qYlGAC7HSUhgqzzKkHMcxtXurM4qQyRCWAoVCHZZpnnzj372bETzqWbL/vSA2jKccbKYg== | ||||
|   dependencies: | ||||
|     "@sapphirecode/eslint-config" "^2.0.1" | ||||
|     eslint-plugin-import "^2.20.1" | ||||
|     "@sapphirecode/eslint-config" "^2.1.2" | ||||
|     eslint-plugin-import "^2.20.2" | ||||
|  | ||||
| "@sapphirecode/eslint-config@^2.0.1": | ||||
|   version "2.0.25" | ||||
|   resolved "https://registry.yarnpkg.com/@sapphirecode/eslint-config/-/eslint-config-2.0.25.tgz#c323e81faadba23dbe2edfe2c6e97497d0a44d25" | ||||
|   integrity sha512-SIu/n6KrNkk4zdKWSnPVNijdayiwbxNwBNWP29s3M3wHRR9DsgCED4gMQjbyQa+Ny4cfm2J6n3fuovjSB3Xryw== | ||||
| "@sapphirecode/eslint-config@^2.1.2": | ||||
|   version "2.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/@sapphirecode/eslint-config/-/eslint-config-2.1.2.tgz#8b64275b4c07533bf8ead9ff58d82e22167a41f0" | ||||
|   integrity sha512-JtTuUP3a0PA0MraRzrQITn6AaIW1Z1SNtufSK6Rc2iiz3N8JS0HQdQ7wuozieNRGuOJmSMu9hiQSua7432C8RQ== | ||||
|   dependencies: | ||||
|     eslint-plugin-node "^11.0.0" | ||||
|     eslint-plugin-node "^11.1.0" | ||||
|     eslint-plugin-sort-requires-by-path "^1.0.2" | ||||
|  | ||||
| "@types/color-name@^1.1.1": | ||||
| @@ -69,7 +69,7 @@ | ||||
|   resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" | ||||
|   integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== | ||||
|  | ||||
| "@typescript-eslint/eslint-plugin@^2.26.0": | ||||
| "@typescript-eslint/eslint-plugin@^2.33.0": | ||||
|   version "2.33.0" | ||||
|   resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.33.0.tgz#d6c8319d5011b4783bb3d2dadf105d8bdd499bd5" | ||||
|   integrity sha512-QV6P32Btu1sCI/kTqjTNI/8OpCYyvlGjW5vD8MpTIg+HGE5S88HtT1G+880M4bXlvXj/NjsJJG0aGcVh0DdbeQ== | ||||
| @@ -89,7 +89,7 @@ | ||||
|     eslint-scope "^5.0.0" | ||||
|     eslint-utils "^2.0.0" | ||||
|  | ||||
| "@typescript-eslint/parser@^2.26.0": | ||||
| "@typescript-eslint/parser@^2.33.0": | ||||
|   version "2.33.0" | ||||
|   resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.33.0.tgz#395c0ef229ebef883608f8632a34f0acf02b9bdd" | ||||
|   integrity sha512-AUtmwUUhJoH6yrtxZMHbRUEMsC2G6z5NSxg9KsROOGqNXasM71I8P2NihtumlWTUCRld70vqIZ6Pm4E5PAziEA== | ||||
| @@ -221,7 +221,7 @@ callsites@^3.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" | ||||
|   integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== | ||||
|  | ||||
| chalk@^2.0.0, chalk@^2.1.0: | ||||
| chalk@^2.0.0: | ||||
|   version "2.4.2" | ||||
|   resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | ||||
|   integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== | ||||
| @@ -238,6 +238,14 @@ chalk@^3.0.0: | ||||
|     ansi-styles "^4.1.0" | ||||
|     supports-color "^7.1.0" | ||||
|  | ||||
| chalk@^4.0.0: | ||||
|   version "4.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" | ||||
|   integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== | ||||
|   dependencies: | ||||
|     ansi-styles "^4.1.0" | ||||
|     supports-color "^7.1.0" | ||||
|  | ||||
| chardet@^0.7.0: | ||||
|   version "0.7.0" | ||||
|   resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" | ||||
| @@ -289,16 +297,14 @@ contains-path@^0.1.0: | ||||
|   resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" | ||||
|   integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= | ||||
|  | ||||
| cross-spawn@^6.0.5: | ||||
|   version "6.0.5" | ||||
|   resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" | ||||
|   integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== | ||||
| cross-spawn@^7.0.2: | ||||
|   version "7.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.2.tgz#d0d7dcfa74e89115c7619f4f721a94e1fdb716d6" | ||||
|   integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw== | ||||
|   dependencies: | ||||
|     nice-try "^1.0.4" | ||||
|     path-key "^2.0.1" | ||||
|     semver "^5.5.0" | ||||
|     shebang-command "^1.2.0" | ||||
|     which "^1.2.9" | ||||
|     path-key "^3.1.0" | ||||
|     shebang-command "^2.0.0" | ||||
|     which "^2.0.1" | ||||
|  | ||||
| debug@^2.6.9: | ||||
|   version "2.6.9" | ||||
| @@ -314,7 +320,7 @@ debug@^4.0.1, debug@^4.1.1: | ||||
|   dependencies: | ||||
|     ms "^2.1.1" | ||||
|  | ||||
| deep-is@~0.1.3: | ||||
| deep-is@^0.1.3: | ||||
|   version "0.1.3" | ||||
|   resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" | ||||
|   integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= | ||||
| @@ -389,7 +395,7 @@ escape-string-regexp@^1.0.5: | ||||
|   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | ||||
|   integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | ||||
|  | ||||
| eslint-config-standard@^14.1.0: | ||||
| eslint-config-standard@^14.1.1: | ||||
|   version "14.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz#830a8e44e7aef7de67464979ad06b406026c56ea" | ||||
|   integrity sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg== | ||||
| @@ -418,7 +424,7 @@ eslint-plugin-es@^3.0.0: | ||||
|     eslint-utils "^2.0.0" | ||||
|     regexpp "^3.0.0" | ||||
|  | ||||
| eslint-plugin-import@^2.20.1, eslint-plugin-import@^2.20.2: | ||||
| eslint-plugin-import@^2.20.2: | ||||
|   version "2.20.2" | ||||
|   resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" | ||||
|   integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== | ||||
| @@ -436,7 +442,7 @@ eslint-plugin-import@^2.20.1, eslint-plugin-import@^2.20.2: | ||||
|     read-pkg-up "^2.0.0" | ||||
|     resolve "^1.12.0" | ||||
|  | ||||
| eslint-plugin-node@^11.0.0, eslint-plugin-node@^11.1.0: | ||||
| eslint-plugin-node@^11.1.0: | ||||
|   version "11.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d" | ||||
|   integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== | ||||
| @@ -479,13 +485,6 @@ eslint-scope@^5.0.0: | ||||
|     esrecurse "^4.1.0" | ||||
|     estraverse "^4.1.1" | ||||
|  | ||||
| eslint-utils@^1.4.3: | ||||
|   version "1.4.3" | ||||
|   resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" | ||||
|   integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== | ||||
|   dependencies: | ||||
|     eslint-visitor-keys "^1.1.0" | ||||
|  | ||||
| eslint-utils@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd" | ||||
| @@ -498,22 +497,22 @@ eslint-visitor-keys@^1.1.0: | ||||
|   resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" | ||||
|   integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== | ||||
|  | ||||
| eslint@^6.8.0: | ||||
|   version "6.8.0" | ||||
|   resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" | ||||
|   integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== | ||||
| eslint@^7.0.0: | ||||
|   version "7.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.0.0.tgz#c35dfd04a4372110bd78c69a8d79864273919a08" | ||||
|   integrity sha512-qY1cwdOxMONHJfGqw52UOpZDeqXy8xmD0u8CT6jIstil72jkhURC704W8CFyTPDPllz4z4lu0Ql1+07PG/XdIg== | ||||
|   dependencies: | ||||
|     "@babel/code-frame" "^7.0.0" | ||||
|     ajv "^6.10.0" | ||||
|     chalk "^2.1.0" | ||||
|     cross-spawn "^6.0.5" | ||||
|     chalk "^4.0.0" | ||||
|     cross-spawn "^7.0.2" | ||||
|     debug "^4.0.1" | ||||
|     doctrine "^3.0.0" | ||||
|     eslint-scope "^5.0.0" | ||||
|     eslint-utils "^1.4.3" | ||||
|     eslint-utils "^2.0.0" | ||||
|     eslint-visitor-keys "^1.1.0" | ||||
|     espree "^6.1.2" | ||||
|     esquery "^1.0.1" | ||||
|     espree "^7.0.0" | ||||
|     esquery "^1.2.0" | ||||
|     esutils "^2.0.2" | ||||
|     file-entry-cache "^5.0.1" | ||||
|     functional-red-black-tree "^1.0.1" | ||||
| @@ -526,25 +525,24 @@ eslint@^6.8.0: | ||||
|     is-glob "^4.0.0" | ||||
|     js-yaml "^3.13.1" | ||||
|     json-stable-stringify-without-jsonify "^1.0.1" | ||||
|     levn "^0.3.0" | ||||
|     levn "^0.4.1" | ||||
|     lodash "^4.17.14" | ||||
|     minimatch "^3.0.4" | ||||
|     mkdirp "^0.5.1" | ||||
|     natural-compare "^1.4.0" | ||||
|     optionator "^0.8.3" | ||||
|     optionator "^0.9.1" | ||||
|     progress "^2.0.0" | ||||
|     regexpp "^2.0.1" | ||||
|     semver "^6.1.2" | ||||
|     strip-ansi "^5.2.0" | ||||
|     strip-json-comments "^3.0.1" | ||||
|     regexpp "^3.1.0" | ||||
|     semver "^7.2.1" | ||||
|     strip-ansi "^6.0.0" | ||||
|     strip-json-comments "^3.1.0" | ||||
|     table "^5.2.3" | ||||
|     text-table "^0.2.0" | ||||
|     v8-compile-cache "^2.0.3" | ||||
|  | ||||
| espree@^6.1.2: | ||||
|   version "6.2.1" | ||||
|   resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" | ||||
|   integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== | ||||
| espree@^7.0.0: | ||||
|   version "7.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/espree/-/espree-7.0.0.tgz#8a7a60f218e69f120a842dc24c5a88aa7748a74e" | ||||
|   integrity sha512-/r2XEx5Mw4pgKdyb7GNLQNsu++asx/dltf/CI8RFi9oGHxmQFgvLbc5Op4U6i8Oaj+kdslhJtVlEZeAqH5qOTw== | ||||
|   dependencies: | ||||
|     acorn "^7.1.1" | ||||
|     acorn-jsx "^5.2.0" | ||||
| @@ -555,7 +553,7 @@ esprima@^4.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" | ||||
|   integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== | ||||
|  | ||||
| esquery@^1.0.1: | ||||
| esquery@^1.2.0: | ||||
|   version "1.3.1" | ||||
|   resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" | ||||
|   integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== | ||||
| @@ -608,7 +606,7 @@ fast-json-stable-stringify@^2.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" | ||||
|   integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== | ||||
|  | ||||
| fast-levenshtein@~2.0.6: | ||||
| fast-levenshtein@^2.0.6: | ||||
|   version "2.0.6" | ||||
|   resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" | ||||
|   integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= | ||||
| @@ -877,13 +875,13 @@ json-stable-stringify-without-jsonify@^1.0.1: | ||||
|   resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" | ||||
|   integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= | ||||
|  | ||||
| levn@^0.3.0, levn@~0.3.0: | ||||
|   version "0.3.0" | ||||
|   resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" | ||||
|   integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= | ||||
| levn@^0.4.1: | ||||
|   version "0.4.1" | ||||
|   resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" | ||||
|   integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== | ||||
|   dependencies: | ||||
|     prelude-ls "~1.1.2" | ||||
|     type-check "~0.3.2" | ||||
|     prelude-ls "^1.2.1" | ||||
|     type-check "~0.4.0" | ||||
|  | ||||
| load-json-file@^2.0.0: | ||||
|   version "2.0.0" | ||||
| @@ -952,11 +950,6 @@ natural-compare@^1.4.0: | ||||
|   resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" | ||||
|   integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= | ||||
|  | ||||
| nice-try@^1.0.4: | ||||
|   version "1.0.5" | ||||
|   resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" | ||||
|   integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== | ||||
|  | ||||
| normalize-package-data@^2.3.2: | ||||
|   version "2.5.0" | ||||
|   resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" | ||||
| @@ -1011,17 +1004,17 @@ onetime@^5.1.0: | ||||
|   dependencies: | ||||
|     mimic-fn "^2.1.0" | ||||
|  | ||||
| optionator@^0.8.3: | ||||
|   version "0.8.3" | ||||
|   resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" | ||||
|   integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== | ||||
| optionator@^0.9.1: | ||||
|   version "0.9.1" | ||||
|   resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" | ||||
|   integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== | ||||
|   dependencies: | ||||
|     deep-is "~0.1.3" | ||||
|     fast-levenshtein "~2.0.6" | ||||
|     levn "~0.3.0" | ||||
|     prelude-ls "~1.1.2" | ||||
|     type-check "~0.3.2" | ||||
|     word-wrap "~1.2.3" | ||||
|     deep-is "^0.1.3" | ||||
|     fast-levenshtein "^2.0.6" | ||||
|     levn "^0.4.1" | ||||
|     prelude-ls "^1.2.1" | ||||
|     type-check "^0.4.0" | ||||
|     word-wrap "^1.2.3" | ||||
|  | ||||
| os-tmpdir@~1.0.2: | ||||
|   version "1.0.2" | ||||
| @@ -1071,10 +1064,10 @@ path-is-absolute@^1.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | ||||
|   integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= | ||||
|  | ||||
| path-key@^2.0.1: | ||||
|   version "2.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" | ||||
|   integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= | ||||
| path-key@^3.1.0: | ||||
|   version "3.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" | ||||
|   integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== | ||||
|  | ||||
| path-parse@^1.0.6: | ||||
|   version "1.0.6" | ||||
| @@ -1100,10 +1093,10 @@ pkg-dir@^2.0.0: | ||||
|   dependencies: | ||||
|     find-up "^2.1.0" | ||||
|  | ||||
| prelude-ls@~1.1.2: | ||||
|   version "1.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" | ||||
|   integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= | ||||
| prelude-ls@^1.2.1: | ||||
|   version "1.2.1" | ||||
|   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" | ||||
|   integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== | ||||
|  | ||||
| progress@^2.0.0: | ||||
|   version "2.0.3" | ||||
| @@ -1132,12 +1125,7 @@ read-pkg@^2.0.0: | ||||
|     normalize-package-data "^2.3.2" | ||||
|     path-type "^2.0.0" | ||||
|  | ||||
| regexpp@^2.0.1: | ||||
|   version "2.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" | ||||
|   integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== | ||||
|  | ||||
| regexpp@^3.0.0: | ||||
| regexpp@^3.0.0, regexpp@^3.1.0: | ||||
|   version "3.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" | ||||
|   integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== | ||||
| @@ -1193,32 +1181,32 @@ rxjs@^6.5.3: | ||||
|   resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | ||||
|   integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | ||||
|  | ||||
| "semver@2 || 3 || 4 || 5", semver@^5.5.0: | ||||
| "semver@2 || 3 || 4 || 5": | ||||
|   version "5.7.1" | ||||
|   resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" | ||||
|   integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== | ||||
|  | ||||
| semver@^6.1.0, semver@^6.1.2: | ||||
| semver@^6.1.0: | ||||
|   version "6.3.0" | ||||
|   resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" | ||||
|   integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== | ||||
|  | ||||
| semver@^7.3.2: | ||||
| semver@^7.2.1, semver@^7.3.2: | ||||
|   version "7.3.2" | ||||
|   resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" | ||||
|   integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== | ||||
|  | ||||
| shebang-command@^1.2.0: | ||||
|   version "1.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" | ||||
|   integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= | ||||
| shebang-command@^2.0.0: | ||||
|   version "2.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" | ||||
|   integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== | ||||
|   dependencies: | ||||
|     shebang-regex "^1.0.0" | ||||
|     shebang-regex "^3.0.0" | ||||
|  | ||||
| shebang-regex@^1.0.0: | ||||
|   version "1.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" | ||||
|   integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= | ||||
| shebang-regex@^3.0.0: | ||||
|   version "3.0.0" | ||||
|   resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" | ||||
|   integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== | ||||
|  | ||||
| signal-exit@^3.0.2: | ||||
|   version "3.0.3" | ||||
| @@ -1317,7 +1305,7 @@ string.prototype.trimstart@^1.0.0: | ||||
|     define-properties "^1.1.3" | ||||
|     es-abstract "^1.17.5" | ||||
|  | ||||
| strip-ansi@^5.1.0, strip-ansi@^5.2.0: | ||||
| strip-ansi@^5.1.0: | ||||
|   version "5.2.0" | ||||
|   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" | ||||
|   integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== | ||||
| @@ -1336,7 +1324,7 @@ strip-bom@^3.0.0: | ||||
|   resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" | ||||
|   integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= | ||||
|  | ||||
| strip-json-comments@^3.0.1: | ||||
| strip-json-comments@^3.1.0: | ||||
|   version "3.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" | ||||
|   integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== | ||||
| @@ -1394,12 +1382,12 @@ tsutils@^3.17.1: | ||||
|   dependencies: | ||||
|     tslib "^1.8.1" | ||||
|  | ||||
| type-check@~0.3.2: | ||||
|   version "0.3.2" | ||||
|   resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" | ||||
|   integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= | ||||
| type-check@^0.4.0, type-check@~0.4.0: | ||||
|   version "0.4.0" | ||||
|   resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" | ||||
|   integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== | ||||
|   dependencies: | ||||
|     prelude-ls "~1.1.2" | ||||
|     prelude-ls "^1.2.1" | ||||
|  | ||||
| type-fest@^0.11.0: | ||||
|   version "0.11.0" | ||||
| @@ -1431,14 +1419,14 @@ validate-npm-package-license@^3.0.1: | ||||
|     spdx-correct "^3.0.0" | ||||
|     spdx-expression-parse "^3.0.0" | ||||
|  | ||||
| which@^1.2.9: | ||||
|   version "1.3.1" | ||||
|   resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" | ||||
|   integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== | ||||
| which@^2.0.1: | ||||
|   version "2.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" | ||||
|   integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== | ||||
|   dependencies: | ||||
|     isexe "^2.0.0" | ||||
|  | ||||
| word-wrap@~1.2.3: | ||||
| word-wrap@^1.2.3: | ||||
|   version "1.2.3" | ||||
|   resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" | ||||
|   integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== | ||||
|   | ||||
		Reference in New Issue
	
	Block a user