Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(dev-deps): ⬆️ update devdependencies (non-major) (patch) (#59)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`^2.8.4` -> `^2.8.5`](https://renovatebot.com/diffs/npm/prettier/2.8.4/2.8.5) | [![age](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/compatibility-slim/2.8.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/confidence-slim/2.8.4)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`^1.8.3` -> `^1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | | [vite](https://github.com/vitejs/vite/tree/main/#readme) ([source](https://github.com/vitejs/vite)) | [`^4.2.0` -> `^4.2.1`](https://renovatebot.com/diffs/npm/vite/4.2.0/4.2.1) | [![age](https://badges.renovateapi.com/packages/npm/vite/4.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/vite/4.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/vite/4.2.1/compatibility-slim/4.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/vite/4.2.1/confidence-slim/4.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prettier/prettier</summary> ### [`v2.8.5`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​285) [Compare Source](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) [diff](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) ##### Support TypeScript 5.0 ([#​14391](https://github.com/prettier/prettier/pull/14391) by [@​fisker](https://github.com/fisker), [#​13819](https://github.com/prettier/prettier/pull/13819) by [@​fisker](https://github.com/fisker), [@​sosukesuzuki](https://github.com/sosukesuzuki)) TypeScript 5.0 introduces two new syntactic features: - `const` modifiers for type parameters - `export type *` declarations ##### Add missing parentheses for decorator ([#​14393](https://github.com/prettier/prettier/pull/14393) by [@​fisker](https://github.com/fisker)) ```jsx // Input class Person { @​(myDecoratorArray[0]) greet() {} } // Prettier 2.8.4 class Person { @​myDecoratorArray[0] greet() {} } // Prettier 2.8.5 class Person { @​(myDecoratorArray[0]) greet() {} } ``` ##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#​14458](https://github.com/prettier/prettier/pull/14458) by [@​fisker](https://github.com/fisker)) ```tsx // Input type A = (typeof node.children)[]; // Prettier 2.8.4 type A = typeof node.children[]; // Prettier 2.8.5 type A = (typeof node.children)[]; ``` ##### Support `max_line_length=off` when parsing `.editorconfig` ([#​14516](https://github.com/prettier/prettier/pull/14516) by [@​josephfrazier](https://github.com/josephfrazier)) If an .editorconfig file is in your project and it sets `max_line_length=off` for the file you're formatting, it will be interpreted as a `printWidth` of `Infinity` rather than being ignored (which previously resulted in the default `printWidth` of 80 being applied, if not overridden by Prettier-specific configuration). ```html <!-- Input --> <div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/> <!-- Prettier 2.8.4 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; <!-- Prettier 2.8.5 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; ``` </details> <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) #### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </details> <details> <summary>vitejs/vite</summary> ### [`v4.2.1`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small421-2023-03-20-small) [Compare Source](https://github.com/vitejs/vite/compare/9dbb7f7765fd7d255daf82ad44fe867d49f0befd...v4.2.1) - fix: add `virtual:` to virtual module source map ignore ([#​12444](https://github.com/vitejs/vite/issues/12444)) ([c4aa28f](https://github.com/vitejs/vite/commit/c4aa28f)), closes [#​12444](https://github.com/vitejs/vite/issues/12444) - fix(css): inject source content conditionally ([#​12449](https://github.com/vitejs/vite/issues/12449)) ([3e665f6](https://github.com/vitejs/vite/commit/3e665f6)), closes [#​12449](https://github.com/vitejs/vite/issues/12449) - fix(worker): using data URLs for inline shared worker ([#​12014](https://github.com/vitejs/vite/issues/12014)) ([79a5007](https://github.com/vitejs/vite/commit/79a5007)), closes [#​12014](https://github.com/vitejs/vite/issues/12014) - chore: changelog edits for 4.2 ([#​12438](https://github.com/vitejs/vite/issues/12438)) ([ce047e3](https://github.com/vitejs/vite/commit/ce047e3)), closes [#​12438](https://github.com/vitejs/vite/issues/12438) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/js-bottomsheet).
- Loading branch information
abf0692
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
js-bottomsheet-website – ./apps/website
js-bottomsheet-website.vercel.app
js-bottomsheet-website-timelessco.vercel.app
js-bottomsheet-website-git-main-timelessco.vercel.app