moroshko / react-scanner

Extract React components and props usage from code.
MIT License
564 stars 40 forks source link

Update minor and patch #23

Closed renovate[bot] closed 3 years ago

renovate[bot] commented 3 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint (source) 7.14.0 -> 7.15.0 age adoption passing confidence
husky 4.3.0 -> 4.3.5 age adoption passing confidence
prettier (source) 2.2.0 -> 2.2.1 age adoption passing confidence
uvu 0.4.1 -> 0.5.1 age adoption passing confidence

Release Notes

eslint/eslint ### [`v7.15.0`](https://togithub.com/eslint/eslint/releases/v7.15.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v7.14.0...v7.15.0) - [`5c11aab`](https://togithub.com/eslint/eslint/commit/5c11aabbe8249aeb8cad29bc6a33fc20c8c683ef) Upgrade: [@​eslint/esintrc](https://togithub.com/eslint/esintrc) and espree for bug fixes (refs [#​13878](https://togithub.com/eslint/eslint/issues/13878)) ([#​13908](https://togithub.com/eslint/eslint/issues/13908)) (Brandon Mills) - [`0eb7957`](https://togithub.com/eslint/eslint/commit/0eb7957e27fd521317bd5c8479ce7abc1399169c) Upgrade: file-entry-cache@6.0.0 ([#​13877](https://togithub.com/eslint/eslint/issues/13877)) (Rouven Weßling) - [`683ad00`](https://togithub.com/eslint/eslint/commit/683ad00c41e1ae4d889deff82b2a94318e8c2129) New: no-unsafe-optional-chaining rule (fixes [#​13431](https://togithub.com/eslint/eslint/issues/13431)) ([#​13859](https://togithub.com/eslint/eslint/issues/13859)) (YeonJuan) - [`cbc57fb`](https://togithub.com/eslint/eslint/commit/cbc57fb7d07c00663ed5781f5e6bc8f534cc2d76) Fix: one-var autofixing for export (fixes [#​13834](https://togithub.com/eslint/eslint/issues/13834)) ([#​13891](https://togithub.com/eslint/eslint/issues/13891)) (Anix) - [`110cf96`](https://togithub.com/eslint/eslint/commit/110cf962d05625a8a1bf7b5f4ec2194db150eb32) Docs: Fix a broken link in working-with-rules.md ([#​13875](https://togithub.com/eslint/eslint/issues/13875)) (Anton Niklasson)
typicode/husky ### [`v4.3.5`](https://togithub.com/typicode/husky/compare/v4.3.4...v4.3.5) [Compare Source](https://togithub.com/typicode/husky/compare/v4.3.4...v4.3.5) ### [`v4.3.4`](https://togithub.com/typicode/husky/releases/v4.3.4) [Compare Source](https://togithub.com/typicode/husky/compare/v4.3.3...v4.3.4) - Throw error if husky install fails - Add workaround for npm 7 currently missing `INIT_CWD` environment variable ### [`v4.3.3`](https://togithub.com/typicode/husky/compare/v4.3.2...v4.3.3) [Compare Source](https://togithub.com/typicode/husky/compare/v4.3.2...v4.3.3) ### [`v4.3.2`](https://togithub.com/typicode/husky/compare/v4.3.1...v4.3.2) [Compare Source](https://togithub.com/typicode/husky/compare/v4.3.1...v4.3.2) ### [`v4.3.1`](https://togithub.com/typicode/husky/compare/v4.3.0...v4.3.1) [Compare Source](https://togithub.com/typicode/husky/compare/v4.3.0...v4.3.1)
prettier/prettier ### [`v2.2.1`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​221) [Compare Source](https://togithub.com/prettier/prettier/compare/2.2.0...2.2.1) [diff](https://togithub.com/prettier/prettier/compare/2.2.0...2.2.1) ##### Fix formatting for AssignmentExpression with ClassExpression ([#​9741](https://togithub.com/prettier/prettier/pull/9741) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```js // Input module.exports = class A extends B { method() { console.log("foo"); } }; // Prettier 2.2.0 module.exports = class A extends ( B ) { method() { console.log("foo"); } }; // Prettier 2.2.1 module.exports = class A extends B { method() { console.log("foo"); } }; ```
lukeed/uvu ### [`v0.5.1`](https://togithub.com/lukeed/uvu/releases/v0.5.1) [Compare Source](https://togithub.com/lukeed/uvu/compare/v0.5.0...v0.5.1) #### Patches - (core) Use `performance.now` in supporting browsers ([#​70](https://togithub.com/lukeed/uvu/issues/70)): [`d126d2c`](https://togithub.com/lukeed/uvu/commit/d126d2c) _Results in higher fidelity measurements; avoids most `fakerTimer` issues._ - (core) Move `QUEUE` to `globalThis` scope ([#​76](https://togithub.com/lukeed/uvu/issues/76)): [`e419ff9`](https://togithub.com/lukeed/uvu/commit/e419ff9) _Guarantees that all tests reside in same queue, even if both `uvu` CommonJS **and** ESM variants are loaded._ - (core) Force CommonJS mode when any `-r/--require` option is defined ([#​72](https://togithub.com/lukeed/uvu/issues/72), [#​78](https://togithub.com/lukeed/uvu/issues/78)) _Ensures that any desired `--require` flags **actually** can be invoked. Native ESM does not trigger require hooks._ - (parse) Return `requires` boolean in result: [`4288f22`](https://togithub.com/lukeed/uvu/commit/4288f22) - (parse) Add `opts.cwd` default: [`838646f`](https://togithub.com/lukeed/uvu/commit/838646f), [`bcda8c9`](https://togithub.com/lukeed/uvu/commit/bcda8c9) - (types) Make `uvu/parse` arguments optional: [`2762c1c`](https://togithub.com/lukeed/uvu/commit/2762c1c) #### Examples - Add ["puppeteer"](/examples/puppeteer) example ([#​77](https://togithub.com/lukeed/uvu/issues/77)): [`53ac99a`](https://togithub.com/lukeed/uvu/commit/53ac99a), [`43d100b`](https://togithub.com/lukeed/uvu/commit/43d100b) _Thank you [@​AlexVipond](https://togithub.com/AlexVipond)~!_ #### Chores - Upgrade `uvu` version within ["typescript"](/examples/typescript) example: [`6169070`](https://togithub.com/lukeed/uvu/commit/6169070) - Fix "lightweight" link in README: [`bd05953`](https://togithub.com/lukeed/uvu/commit/bd05953) ### [`v0.5.0`](https://togithub.com/lukeed/uvu/releases/v0.5.0) [Compare Source](https://togithub.com/lukeed/uvu/compare/v0.4.1...v0.5.0) #### Features - Added Native ESM Support 🎉 ([#​7](https://togithub.com/lukeed/uvu/issues/7), [#​68](https://togithub.com/lukeed/uvu/issues/68)): [`5ae6740`](https://togithub.com/lukeed/uvu/commit/5ae6740) _Promoted the `next`-tagged release to stable. Thank you all who helped me test it_ 🙇 As mentioned in [#​7](https://togithub.com/lukeed/uvu/issues/7), maintaining legacy Node.js support was a high priority. Mission accomplished! With this release, `uvu` retains Node.js 8.x and 10.x support. 💪 Native support for ESM is detected before invoked, only attempting to `import` test files when it's supported. > Check out the ["esm.dual"](/examples/esm.dual) example to find out how to run the _same tests_ across varying Node versions. #### Examples - Add ["esm.mjs"](/examples/esm.mjs) example: [`5ae6740`](https://togithub.com/lukeed/uvu/commit/5ae6740) _Shows how to use Native ESM within `.mjs` files. (Node 12+ only)_ - Add ["esm.loader"](/examples/esm.loader) example: [`5ae6740`](https://togithub.com/lukeed/uvu/commit/5ae6740) _Demo with `-r esm` require hook for ESM polyfill_ - Add ["esm.dual"](/examples/esm.dual) example: [`5ae6740`](https://togithub.com/lukeed/uvu/commit/5ae6740) _Shows how to use run tests with Native ESM (Node 12+) **without** neglecting older Node.js runtimes._ #### Chores - Added new [`/docs/esm`](https://togithub.com/lukeed/uvu/blob/master/docs/esm.md) documentation: [`5ae6740`](https://togithub.com/lukeed/uvu/commit/5ae6740) - Add notice re: `-r esm` notice to main README: [`e29a711`](https://togithub.com/lukeed/uvu/commit/e29a711) - Fix typo in [`/docs/cli`](/docs/cli.md): [`113ca82`](https://togithub.com/lukeed/uvu/commit/113ca82)

Renovate configuration

:date: Schedule: "every weekend" (UTC).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:ghost: Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by WhiteSource Renovate. View repository job log here.