Skip to content

Commit

Permalink
chore(dev-deps): ⬆️ update devdependencies (non-major) (patch) (#105)
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://togithub.com/prettier/prettier)) | [`2.8.3` -> `2.8.4`](https://renovatebot.com/diffs/npm/prettier/2.8.3/2.8.4) | [![age](https://badges.renovateapi.com/packages/npm/prettier/2.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prettier/2.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prettier/2.8.4/compatibility-slim/2.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prettier/2.8.4/confidence-slim/2.8.3)](https://docs.renovatebot.com/merge-confidence/) |
| [tailwindcss](https://tailwindcss.com) ([source](https://togithub.com/tailwindlabs/tailwindcss)) | [`3.2.4` -> `3.2.6`](https://renovatebot.com/diffs/npm/tailwindcss/3.2.4/3.2.6) | [![age](https://badges.renovateapi.com/packages/npm/tailwindcss/3.2.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/tailwindcss/3.2.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/tailwindcss/3.2.6/compatibility-slim/3.2.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/tailwindcss/3.2.6/confidence-slim/3.2.4)](https://docs.renovatebot.com/merge-confidence/) |
| [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.20.2` -> `3.20.5`](https://renovatebot.com/diffs/npm/zod/3.20.2/3.20.5) | [![age](https://badges.renovateapi.com/packages/npm/zod/3.20.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/zod/3.20.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/zod/3.20.5/compatibility-slim/3.20.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/zod/3.20.5/confidence-slim/3.20.2)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

### [`v2.8.4`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;284)

[Compare Source](https://togithub.com/prettier/prettier/compare/2.8.3...2.8.4)

[diff](https://togithub.com/prettier/prettier/compare/2.8.3...2.8.4)

##### Fix leading comments in mapped types with `readonly` ([#&#8203;13427](https://togithub.com/prettier/prettier/pull/13427) by [@&#8203;thorn0](https://togithub.com/thorn0), [@&#8203;sosukesuzuki](https://togithub.com/sosukesuzuki))



```tsx
// Input
type Type = {
  // comment
  readonly [key in Foo];
};

// Prettier 2.8.3
type Type = {
  readonly // comment
  [key in Foo];
};

// Prettier 2.8.4
type Type = {
  // comment
  readonly [key in Foo];
};
```

##### Group params in opening block statements ([#&#8203;14067](https://togithub.com/prettier/prettier/pull/14067) by [@&#8203;jamescdavis](https://togithub.com/jamescdavis))

This is a follow-up to [#&#8203;13930](https://togithub.com/prettier/prettier/issues/13930) to establish wrapping consistency between opening block statements and else blocks by
grouping params in opening blocks. This causes params to break to a new line together and not be split across lines
unless the length of params exceeds the print width. This also updates the else block wrapping to behave exactly the
same as opening blocks.



```hbs
{{! Input }}
{{#block param param param param param param param param param param as |blockParam|}}
  Hello
{{else block param param param param param param param param param param as |blockParam|}}
  There
{{/block}}

{{! Prettier 2.8.3 }}
{{#block
  param
  param
  param
  param
  param
  param
  param
  param
  param
  param
  as |blockParam|
}}
  Hello
{{else block param
param
param
param
param
param
param
param
param
param}}
  There
{{/block}}

{{! Prettier 2.8.4 }}
{{#block
  param param param param param param param param param param
  as |blockParam|
}}
  Hello
{{else block
  param param param param param param param param param param
  as |blockParam|
}}
  There
{{/block}}
```

##### Ignore files in `.sl/` ([#&#8203;14206](https://togithub.com/prettier/prettier/pull/14206) by [@&#8203;bolinfest](https://togithub.com/bolinfest))

In [Sapling SCM](https://sapling-scm.com/), `.sl/` is the folder where it stores its state, analogous to `.git/` in Git. It should be ignored in Prettier like the other SCM folders.

##### Recognize `@satisfies` in Closure-style type casts ([#&#8203;14262](https://togithub.com/prettier/prettier/pull/14262) by [@&#8203;fisker](https://togithub.com/fisker))



```jsx
// Input
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});

// Prettier 2.8.3
const a = /** @&#8203;satisfies {Record<string, string>} */ { hello: 1337 };
const b = /** @&#8203;type {Record<string, string>} */ ({ hello: 1337 });

// Prettier 2.8.4
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});
```

##### Fix parens in inferred function return types with `extends` ([#&#8203;14279](https://togithub.com/prettier/prettier/pull/14279) by [@&#8203;fisker](https://togithub.com/fisker))



```ts
// Input
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;

// Prettier 2.8.3 (First format)
type Foo<T> = T extends (a) => a is infer R extends string ? R : never;

// Prettier 2.8.3 (Second format)
SyntaxError: '?' expected. 

// Prettier 2.8.4
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;
```

</details>

<details>
<summary>tailwindlabs/tailwindcss</summary>

### [`v3.2.6`](https://togithub.com/tailwindlabs/tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;326---2023-02-08)

[Compare Source](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.2.5...v3.2.6)

##### Fixed

-   drop oxide api shim ([add16364b4b1100e1af23ad1ca6900a0b53cbba0](https://togithub.com/tailwindlabs/tailwindcss/commit/add16364b4b1100e1af23ad1ca6900a0b53cbba0))

### [`v3.2.5`](https://togithub.com/tailwindlabs/tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;325---2023-02-08)

[Compare Source](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.2.4...v3.2.5)

##### Added

-   Add standalone CLI build for 64-bit Windows on ARM (`node16-win-arm64`) ([#&#8203;10001](https://togithub.com/tailwindlabs/tailwindcss/pull/10001))

##### Fixed

-   Cleanup unused `variantOrder` ([#&#8203;9829](https://togithub.com/tailwindlabs/tailwindcss/pull/9829))
-   Fix `foo-[abc]/[def]` not being handled correctly ([#&#8203;9866](https://togithub.com/tailwindlabs/tailwindcss/pull/9866))
-   Add container queries plugin to standalone CLI ([#&#8203;9865](https://togithub.com/tailwindlabs/tailwindcss/pull/9865))
-   Support renaming of output files by `PostCSS` plugin. ([#&#8203;9944](https://togithub.com/tailwindlabs/tailwindcss/pull/9944))
-   Improve return value of `resolveConfig`, unwrap `ResolvableTo` ([#&#8203;9972](https://togithub.com/tailwindlabs/tailwindcss/pull/9972))
-   Clip unbalanced brackets in arbitrary values ([#&#8203;9973](https://togithub.com/tailwindlabs/tailwindcss/pull/9973))
-   Don’t reorder webkit scrollbar pseudo elements ([#&#8203;9991](https://togithub.com/tailwindlabs/tailwindcss/pull/9991))
-   Deterministic sorting of arbitrary variants ([#&#8203;10016](https://togithub.com/tailwindlabs/tailwindcss/pull/10016))
-   Add `data` key to theme types ([#&#8203;10023](https://togithub.com/tailwindlabs/tailwindcss/pull/10023))
-   Prevent invalid arbitrary variant selectors from failing the build ([#&#8203;10059](https://togithub.com/tailwindlabs/tailwindcss/pull/10059))
-   Properly handle subtraction followed by a variable ([#&#8203;10074](https://togithub.com/tailwindlabs/tailwindcss/pull/10074))
-   Fix missing `string[]` in the `theme.dropShadow` types ([#&#8203;10072](https://togithub.com/tailwindlabs/tailwindcss/pull/10072))
-   Update list of length units ([#&#8203;10100](https://togithub.com/tailwindlabs/tailwindcss/pull/10100))
-   Fix not matching arbitrary properties when closely followed by square brackets ([#&#8203;10212](https://togithub.com/tailwindlabs/tailwindcss/pull/10212))
-   Allow direct nesting in `root` or `@layer` nodes ([#&#8203;10229](https://togithub.com/tailwindlabs/tailwindcss/pull/10229))
-   Don't prefix classes in arbitrary variants ([#&#8203;10214](https://togithub.com/tailwindlabs/tailwindcss/pull/10214))
-   Fix perf regression when checking for changed content ([#&#8203;10234](https://togithub.com/tailwindlabs/tailwindcss/pull/10234))
-   Fix missing `blocklist` member in the `Config` type ([#&#8203;10239](https://togithub.com/tailwindlabs/tailwindcss/pull/10239))
-   Escape group names in selectors ([#&#8203;10276](https://togithub.com/tailwindlabs/tailwindcss/pull/10276))
-   Consider earlier variants before sorting functions ([#&#8203;10288](https://togithub.com/tailwindlabs/tailwindcss/pull/10288))
-   Allow variants with slashes ([#&#8203;10336](https://togithub.com/tailwindlabs/tailwindcss/pull/10336))
-   Ensure generated CSS is always sorted in the same order for a given set of templates ([#&#8203;10382](https://togithub.com/tailwindlabs/tailwindcss/pull/10382))
-   Handle variants when the same class appears multiple times in a selector ([#&#8203;10397](https://togithub.com/tailwindlabs/tailwindcss/pull/10397))
-   Handle group/peer variants with quoted strings ([#&#8203;10400](https://togithub.com/tailwindlabs/tailwindcss/pull/10400))
-   Parse alpha value from rgba/hsla colors when using variables ([#&#8203;10429](https://togithub.com/tailwindlabs/tailwindcss/pull/10429))
-   Sort by `layer` inside `variants` layer ([#&#8203;10505](https://togithub.com/tailwindlabs/tailwindcss/pull/10505))
-   Add `--watch=always` option to prevent exit when stdin closes ([#&#8203;9966](https://togithub.com/tailwindlabs/tailwindcss/pull/9966))

##### Changed

-   Alphabetize `theme` keys in default config ([#&#8203;9953](https://togithub.com/tailwindlabs/tailwindcss/pull/9953))
-   Update esbuild to v17 ([#&#8203;10368](https://togithub.com/tailwindlabs/tailwindcss/pull/10368))
-   Include `outline-color` in `transition` and `transition-colors` utilities ([#&#8203;10385](https://togithub.com/tailwindlabs/tailwindcss/pull/10385))

</details>

<details>
<summary>colinhacks/zod</summary>

### [`v3.20.5`](https://togithub.com/colinhacks/zod/releases/tag/v3.20.5)

[Compare Source](https://togithub.com/colinhacks/zod/compare/v3.20.4...v3.20.5)

##### Commits:

-   [`e71c7be`](https://togithub.com/colinhacks/zod/commit/e71c7be15e393e0932aa3c939d061f8444f6ae29) Fix extract/exclude type error

### [`v3.20.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.20.4)

[Compare Source](https://togithub.com/colinhacks/zod/compare/v3.20.3...v3.20.4)

#### Commits:

-   [`b8d731f`](https://togithub.com/colinhacks/zod/commit/b8d731f779679e6f47cde18b2c422b0d4f44b01d) Set input type of ZodCatch to unknown
-   [`06c237c`](https://togithub.com/colinhacks/zod/commit/06c237c29f53a827d2eb29cb20e9e23caba1ce2c) Revert merge changes
-   [`c8ce27e`](https://togithub.com/colinhacks/zod/commit/c8ce27e8c0378856964cf8892c6102bde63fa0cb) 3.20.4

### [`v3.20.3`](https://togithub.com/colinhacks/zod/releases/tag/v3.20.3)

[Compare Source](https://togithub.com/colinhacks/zod/compare/v3.20.2...v3.20.3)

#### Features

-   Add string cuid2() validation by [@&#8203;joulev](https://togithub.com/joulev) in [colinhacks/zod#1813
-   Add `ZodNumber.isFinite`, make `ZodNumber.isInt` true if `.multipleOf(int)`. by [@&#8203;igalklebanov](https://togithub.com/igalklebanov) in [colinhacks/zod#1714
-   feat: Add `extract`/`exclude` methods to `ZodEnum` by [@&#8203;santosmarco-caribou](https://togithub.com/santosmarco-caribou) in [colinhacks/zod#1652

#### Fixes and documentation

-   add more test cases for `z.coerce`. by [@&#8203;igalklebanov](https://togithub.com/igalklebanov) in [colinhacks/zod#1680
-   Add Modular Forms to form integrations in README by [@&#8203;fabian-hiller](https://togithub.com/fabian-hiller) in [colinhacks/zod#1695
-   docs: Instruct users to return z.NEVER in .superRefine() when providing a type predicate by [@&#8203;zetaraku](https://togithub.com/zetaraku) in [colinhacks/zod#1742
-   Fix small typo in ERROR_HANDLING.md by [@&#8203;t-shiratori](https://togithub.com/t-shiratori) in [colinhacks/zod#1720
-   Improve accuracy of the `isAsync` type guard by [@&#8203;aaronccasanova](https://togithub.com/aaronccasanova) in [colinhacks/zod#1719
-   fix: Fix `ZodCatch` by [@&#8203;santosmarco-caribou](https://togithub.com/santosmarco-caribou) in [colinhacks/zod#1733
-   Fix datetime offset without comma by [@&#8203;ooga](https://togithub.com/ooga) in [colinhacks/zod#1749
-   Discriminated union example fails to parse by [@&#8203;matthewfallshaw](https://togithub.com/matthewfallshaw) in [colinhacks/zod#1713
-   fix: \[[#&#8203;1693](https://togithub.com/colinhacks/zod/issues/1693)] Tuple with empty items by [@&#8203;metuan](https://togithub.com/metuan) in [colinhacks/zod#1712
-   fix: [#&#8203;1668](https://togithub.com/colinhacks/zod/issues/1668) email regex safari compat by [@&#8203;AnatoleLucet](https://togithub.com/AnatoleLucet) in [colinhacks/zod#1683
-   docs: fix typo by [@&#8203;zetaraku](https://togithub.com/zetaraku) in [colinhacks/zod#1699
-   fix installation links in table of contents by [@&#8203;DetachHead](https://togithub.com/DetachHead) in [colinhacks/zod#1700
-   Updated `deno/lib/README.md` to match `zod/README.md` by [@&#8203;JacobWeisenburger](https://togithub.com/JacobWeisenburger) in [colinhacks/zod#1791
-   fix([#&#8203;1743](https://togithub.com/colinhacks/zod/issues/1743)): Fix passing params in root class by [@&#8203;santosmarco-caribou](https://togithub.com/santosmarco-caribou) in [colinhacks/zod#1756
-   change the chaining order of nullish method by [@&#8203;p10ns11y](https://togithub.com/p10ns11y) in [colinhacks/zod#1702
-   Propagate custom error type to ZodFormattedError subfields by [@&#8203;carlgieringer](https://togithub.com/carlgieringer) in [colinhacks/zod#1617
-   fix deno literal test. by [@&#8203;igalklebanov](https://togithub.com/igalklebanov) in [colinhacks/zod#1794
-   Document `.describe()` by [@&#8203;rattrayalex](https://togithub.com/rattrayalex) in [colinhacks/zod#1819
-   update homepage link in package.json by [@&#8203;Gpx](https://togithub.com/Gpx) in [colinhacks/zod#1830
-   fix: compile error in sample code by [@&#8203;jtgi](https://togithub.com/jtgi) in [colinhacks/zod#1822
-   Readme: Move  "Coercion for primitives" section by [@&#8203;tordans](https://togithub.com/tordans) in [colinhacks/zod#1842
-   Readme: Add internal links "or" <-> "union" by [@&#8203;tordans](https://togithub.com/tordans) in [colinhacks/zod#1846
-   Readme: Add example for string validation for an optional field to chapter "Unions" by [@&#8203;tordans](https://togithub.com/tordans) in [colinhacks/zod#1849
-   Readme: Add intro to chapter Literals by [@&#8203;tordans](https://togithub.com/tordans) in [colinhacks/zod#1877
-   fix: faker.js link in readme by [@&#8203;markacola](https://togithub.com/markacola) in [colinhacks/zod#1843
-   Minor typo fix by [@&#8203;iamchandru6470](https://togithub.com/iamchandru6470) in [colinhacks/zod#1945
-   chore(documentation): Update CHANGELOG to redirect to Github Releases by [@&#8203;mitchwd](https://togithub.com/mitchwd) in [colinhacks/zod#1936
-   fix: \[[#&#8203;1839](https://togithub.com/colinhacks/zod/issues/1839)] remove caught errors from issues by [@&#8203;maxArturo](https://togithub.com/maxArturo) in [colinhacks/zod#1926
-   fix: \[[#&#8203;1784](https://togithub.com/colinhacks/zod/issues/1784)] dark mode in the documentation by [@&#8203;fvckDesa](https://togithub.com/fvckDesa) in [colinhacks/zod#1932
-   Allow also "\[+-]hh" as datetime offset by [@&#8203;rafw87](https://togithub.com/rafw87) in [colinhacks/zod#1797
-   Feature/add resolves method to zod promise by [@&#8203;bolencki13](https://togithub.com/bolencki13) in [colinhacks/zod#1871
-   test: add benchmark tests for date and symbol by [@&#8203;pnts-se](https://togithub.com/pnts-se) in [colinhacks/zod#1796
-   export the email regex by [@&#8203;andresBobsled](https://togithub.com/andresBobsled) in [colinhacks/zod#2007
-   Add React form validation library to ecosystem by [@&#8203;crutchcorn](https://togithub.com/crutchcorn) in [colinhacks/zod#1999
-   fix: make sure only mask keys with truthy values are respected at runtime @&#8203; `.pick`, `.omit`, `.partial` & `.required`. by [@&#8203;igalklebanov](https://togithub.com/igalklebanov) in [colinhacks/zod#1875
-   fix: failing prettier checks on merge by [@&#8203;maxArturo](https://togithub.com/maxArturo) in [colinhacks/zod#1969
-   deny unexpected keys @&#8203; `ZodObject`'s `.omit(mask)`,`.pick(mask)`,`.required(mask)` & `.partial(mask)` at compile time. by [@&#8203;igalklebanov](https://togithub.com/igalklebanov) in [colinhacks/zod#1564
-   docs: punctuation by [@&#8203;jly36963](https://togithub.com/jly36963) in [colinhacks/zod#1973
-   fix\[[#&#8203;1979](https://togithub.com/colinhacks/zod/issues/1979)]: Increment Email validation by [@&#8203;fvckDesa](https://togithub.com/fvckDesa) in [colinhacks/zod#1982
-   test: additional unit-tests for object by [@&#8203;pnts-se](https://togithub.com/pnts-se) in [colinhacks/zod#1729

#### New Contributors

-   [@&#8203;fabian-hiller](https://togithub.com/fabian-hiller) made their first contribution in [colinhacks/zod#1695
-   [@&#8203;zetaraku](https://togithub.com/zetaraku) made their first contribution in [colinhacks/zod#1742
-   [@&#8203;t-shiratori](https://togithub.com/t-shiratori) made their first contribution in [colinhacks/zod#1720
-   [@&#8203;aaronccasanova](https://togithub.com/aaronccasanova) made their first contribution in [colinhacks/zod#1719
-   [@&#8203;ooga](https://togithub.com/ooga) made their first contribution in [colinhacks/zod#1749
-   [@&#8203;matthewfallshaw](https://togithub.com/matthewfallshaw) made their first contribution in [colinhacks/zod#1713
-   [@&#8203;metuan](https://togithub.com/metuan) made their first contribution in [colinhacks/zod#1712
-   [@&#8203;AnatoleLucet](https://togithub.com/AnatoleLucet) made their first contribution in [colinhacks/zod#1683
-   [@&#8203;DetachHead](https://togithub.com/DetachHead) made their first contribution in [colinhacks/zod#1700
-   [@&#8203;p10ns11y](https://togithub.com/p10ns11y) made their first contribution in [colinhacks/zod#1702
-   [@&#8203;carlgieringer](https://togithub.com/carlgieringer) made their first contribution in [colinhacks/zod#1617
-   [@&#8203;rattrayalex](https://togithub.com/rattrayalex) made their first contribution in [colinhacks/zod#1819
-   [@&#8203;Gpx](https://togithub.com/Gpx) made their first contribution in [colinhacks/zod#1830
-   [@&#8203;jtgi](https://togithub.com/jtgi) made their first contribution in [colinhacks/zod#1822
-   [@&#8203;tordans](https://togithub.com/tordans) made their first contribution in [colinhacks/zod#1842
-   [@&#8203;markacola](https://togithub.com/markacola) made their first contribution in [colinhacks/zod#1843
-   [@&#8203;iamchandru6470](https://togithub.com/iamchandru6470) made their first contribution in [colinhacks/zod#1945
-   [@&#8203;mitchwd](https://togithub.com/mitchwd) made their first contribution in [colinhacks/zod#1936
-   [@&#8203;fvckDesa](https://togithub.com/fvckDesa) made their first contribution in [colinhacks/zod#1932
-   [@&#8203;rafw87](https://togithub.com/rafw87) made their first contribution in [colinhacks/zod#1797
-   [@&#8203;bolencki13](https://togithub.com/bolencki13) made their first contribution in [colinhacks/zod#1871
-   [@&#8203;joulev](https://togithub.com/joulev) made their first contribution in [colinhacks/zod#1813
-   [@&#8203;pnts-se](https://togithub.com/pnts-se) made their first contribution in [colinhacks/zod#1796
-   [@&#8203;andresBobsled](https://togithub.com/andresBobsled) made their first contribution in [colinhacks/zod#2007
-   [@&#8203;crutchcorn](https://togithub.com/crutchcorn) made their first contribution in [colinhacks/zod#1999
-   [@&#8203;jly36963](https://togithub.com/jly36963) made their first contribution in [colinhacks/zod#1973

**Full Changelog**: colinhacks/zod@v3.20.2...v3.20.3

</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://togithub.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/navin-moorthy/next-react-app).
  • Loading branch information
renovate[bot] committed Feb 8, 2023
1 parent 1a64101 commit 5fb24ad
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -98,7 +98,7 @@
"npm-run-all": "^4.1.5",
"pinst": "3.0.0",
"postcss": "8.4.21",
"prettier": "2.8.3",
"prettier": "2.8.4",
"prettier-plugin-pkg": "0.17.1",
"prettier-plugin-tailwindcss": "^0.2.2",
"release-it": "15.6.0",
Expand All @@ -107,10 +107,10 @@
"stylelint-config-clean-order": "^2.3.1",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-standard": "29.0.0",
"tailwindcss": "3.2.4",
"tailwindcss": "3.2.6",
"tilg": "0.1.1",
"typescript": "4.9.5",
"zod": "3.20.2"
"zod": "3.20.5"
},
"browserslist": {
"production": [
Expand Down
54 changes: 27 additions & 27 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 5fb24ad

@vercel
Copy link

@vercel vercel bot commented on 5fb24ad Feb 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.