Skip to content

Commit

Permalink
chore(dev-deps): ⬆️ update devdependencies (non-major) (patch) (#59)
Browse files Browse the repository at this point in the history
[![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#&#8203;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 ([#&#8203;14391](https://github.com/prettier/prettier/pull/14391) by [@&#8203;fisker](https://github.com/fisker), [#&#8203;13819](https://github.com/prettier/prettier/pull/13819) by [@&#8203;fisker](https://github.com/fisker), [@&#8203;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 ([#&#8203;14393](https://github.com/prettier/prettier/pull/14393) by [@&#8203;fisker](https://github.com/fisker))



```jsx
// Input
class Person {
  @&#8203;(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @&#8203;myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @&#8203;(myDecoratorArray[0])
  greet() {}
}
```

##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#&#8203;14458](https://github.com/prettier/prettier/pull/14458) by [@&#8203;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` ([#&#8203;14516](https://github.com/prettier/prettier/pull/14516) by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 ([#&#8203;4007](https://github.com/vercel/turbo/issues/4007) by [@&#8203;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 [@&#8203;mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941)
-   Fix prettier by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029)
-   Client timeout by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101)
-   Parallel cache state by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [#&#8203;2](https://github.com/vercel/turbo/issues/2) by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [#&#8203;2](https://github.com/vercel/turbo/issues/2)" ([#&#8203;4127](https://github.com/vercel/turbo/issues/4127) by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154)
-   fix sentence by [@&#8203;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 ([#&#8203;4160](https://github.com/vercel/turbo/issues/4160) by [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;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 [@&#8203;NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243)

#### New Contributors

-   [@&#8203;mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947)
-   [@&#8203;tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010)
-   [@&#8203;timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080)
-   [@&#8203;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)
-   [@&#8203;richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148)
-   [@&#8203;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 ([#&#8203;12444](https://github.com/vitejs/vite/issues/12444)) ([c4aa28f](https://github.com/vitejs/vite/commit/c4aa28f)), closes [#&#8203;12444](https://github.com/vitejs/vite/issues/12444)
-   fix(css): inject source content conditionally ([#&#8203;12449](https://github.com/vitejs/vite/issues/12449)) ([3e665f6](https://github.com/vitejs/vite/commit/3e665f6)), closes [#&#8203;12449](https://github.com/vitejs/vite/issues/12449)
-   fix(worker): using data URLs for inline shared worker ([#&#8203;12014](https://github.com/vitejs/vite/issues/12014)) ([79a5007](https://github.com/vitejs/vite/commit/79a5007)), closes [#&#8203;12014](https://github.com/vitejs/vite/issues/12014)
-   chore: changelog edits for 4.2 ([#&#8203;12438](https://github.com/vitejs/vite/issues/12438)) ([ce047e3](https://github.com/vitejs/vite/commit/ce047e3)), closes [#&#8203;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
renovate[bot] authored Mar 20, 2023
1 parent bd65724 commit abf0692
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 50 deletions.
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"devDependencies": {
"browserslist-to-esbuild": "^1.2.0",
"vite": "^4.2.0",
"vite": "^4.2.1",
"vite-plugin-top-level-await": "^1.3.0"
},
"browserslist": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.8.4",
"prettier": "^2.8.5",
"prettier-plugin-pkg": "^0.17.1",
"stylelint": "^15.3.0",
"stylelint-config-clean-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^31.0.0",
"turbo": "^1.8.3"
"turbo": "^1.8.4"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion packages/js-bottomsheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"animejs": "^3.2.1"
},
"devDependencies": {
"vite": "^4.2.0"
"vite": "^4.2.1"
},
"publishConfig": {
"access": "public"
Expand Down
92 changes: 46 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit abf0692

@vercel
Copy link

@vercel vercel bot commented on abf0692 Mar 20, 2023

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

Please sign in to comment.