Skip to content

Commit

Permalink
chore(deploy): Release (#536)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 30, 2022
1 parent c7cb407 commit b570815
Show file tree
Hide file tree
Showing 8 changed files with 3,501 additions and 5,530 deletions.
18 changes: 0 additions & 18 deletions .changeset/slimy-zoos-compete.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @use-gesture/core

## 10.2.19

### Patch Changes

- c7cb407bd: ts: Typescript 4.8 introduced a new mapping definition for NonNullable which breaks the package types.

```ts
// Native NonNullable Utility Type

// definition on 4.7 and lower
type NonNullable<T> = T extends null | undefined ? never : T

// definition from 4.8
type NonNullable<T> = T & {}
```
This fix reverts the definition of NonNullable so that it works.
More information here: https://github.com/pmndrs/use-gesture/issues/501#issuecomment-1229486104
## 10.2.18
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@use-gesture/core",
"version": "10.2.18",
"version": "10.2.19",
"description": "Core engine for receiving gestures",
"license": "MIT",
"main": "dist/use-gesture-core.cjs.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @use-gesture/core

## 10.2.19

### Patch Changes

- Updated dependencies [c7cb407bd]
- @use-gesture/core@10.2.19

## 10.2.18

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@use-gesture/react",
"version": "10.2.18",
"version": "10.2.19",
"description": "React target for @use-gesture",
"keywords": [
"react",
Expand Down Expand Up @@ -38,6 +38,6 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@use-gesture/core": "10.2.18"
"@use-gesture/core": "10.2.19"
}
}
7 changes: 7 additions & 0 deletions packages/vanilla/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @use-gesture/vanilla

## 10.2.19

### Patch Changes

- Updated dependencies [c7cb407bd]
- @use-gesture/core@10.2.19

## 10.2.18

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/vanilla/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@use-gesture/vanilla",
"version": "10.2.18",
"version": "10.2.19",
"description": "Vanilla target for @use-gesture",
"keywords": [
"react",
Expand Down Expand Up @@ -35,6 +35,6 @@
],
"homepage": "https://use-gesture.netlify.app",
"dependencies": {
"@use-gesture/core": "10.2.18"
"@use-gesture/core": "10.2.19"
}
}
Loading

0 comments on commit b570815

Please sign in to comment.