Skip to content

Commit

Permalink
meta changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmzb committed Sep 10, 2019
1 parent efb1302 commit 30b2b26
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-gesture-detector": "../",
"react-native-gesture-detector": "file:../",
"react-native-gesture-handler": "~1.3.0",
"react-native-reanimated": "~1.1.0",
"react-native-web": "^0.11.4",
Expand Down
4 changes: 2 additions & 2 deletions example/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4178,8 +4178,8 @@ react-native-branch@~3.0.1:
resolved "https://registry.yarnpkg.com/react-native-branch/-/react-native-branch-3.0.1.tgz#5b07b61cbd290168cd3c3662e017ebe0f356d2ca"
integrity sha512-vbcYxPZlpF5f39GAEUF8kuGQqCNeD3E6zEdvtOq8oCGZunHXlWlKgAS6dgBKCvsHvXgHuMtpvs39VgOp8DaKig==

react-native-gesture-detector@../:
version "1.0.0"
"react-native-gesture-detector@file:..":
version "1.0.1"

react-native-gesture-handler@~1.3.0:
version "1.3.0"
Expand Down
Binary file added img/social-poster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/GesturePath.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface Coordinate {
}

type GesturePathProps = {
path: [Coordinate];
path: Coordinate[];
color: string;
slopRadius: number;
};
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import GestureDetector from "./GestureDetector";
import GesturePath from "./GesturePath";
import Cursor from "./Cursor";
import GestureRecorder from "./GestureRecorder";

export { GesturePath, Cursor };
export { GesturePath, Cursor, GestureRecorder };

export default GestureDetector;

0 comments on commit 30b2b26

Please sign in to comment.