Skip to content

Commit 21cb373

Browse files
author
yuji
committed
fixes #2 Solve the problem of installation. (thanks @jamwaffles)
1 parent 0f796f3 commit 21cb373

File tree

7 files changed

+16
-85
lines changed

7 files changed

+16
-85
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ build/Release
2727
# Dependency directory
2828
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
2929
/node_modules
30+
31+
# Xcode
32+
*.xcuserstate
33+
examples/swiper.xcodeproj/project.xcworkspace/
34+
examples/swiper.xcodeproj/xcuserdata

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,19 @@ The best Swiper component for React Native.
2424

2525
- [x] Autoplay
2626

27-
- [x] Design logo
28-
29-
- [x] More usage cases
27+
## Changelog & TODO
3028

3129
- [ ] More switch effects
3230

3331
- [ ] Unit tests
3432

35-
- [ ] Check typo - Need Improve My English :(
33+
- [ ] Check typo
34+
35+
- [ ] Optimal performance when `<Image />` re-render
36+
37+
- [ ] Making the `width` / `height` optional prop, use `measure` function instead
38+
39+
- [x] **1.0.4** fixes #2 Solve the problem of installation. (thanks @jamwaffles)
3640

3741
## Show Cases
3842

examples/swiper.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/swiper.xcodeproj/project.xcworkspace/xcshareddata/swiper.xccheckout

Lines changed: 0 additions & 41 deletions
This file was deleted.

examples/swiper.xcodeproj/xcuserdata/yuji.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 0 additions & 27 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
"react-native",
66
"ios"
77
],
8-
"version": "1.0.3",
8+
"version": "1.0.4",
99
"description": "Swiper component for React Native.",
1010
"main": "dist/index.js",
1111
"scripts": {
12-
"start": "babel src --out-dir dist",
13-
"watch": "babel src --out-dir dist --watch"
14-
},
15-
"bin": {
16-
"babel": "./bin/babel"
12+
"start": "node_modules/.bin/babel src --out-dir dist",
13+
"watch": "node_modules/.bin/babel src --out-dir dist --watch"
1714
},
1815
"repository": {
1916
"type": "git",

0 commit comments

Comments
 (0)