Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 5dcd7f4

Browse files
committed
use proper libraries
1 parent e23bdee commit 5dcd7f4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"jest": {
66
"preset": "jest-react-native",
77
"moduleNameMapper": {
8-
"\\.\/datepicker$": "<rootDir>/node_modules/tcomb-form-native/lib/templates/bootstrap/datepicker.ios.js"
8+
"\\./datepicker$": "<rootDir>/node_modules/tcomb-form-native/lib/templates/bootstrap/datepicker.ios.js"
99
},
1010
"preprocessorIgnorePatterns": [
11-
"node_modules/(?!react-native|tcomb-form-native|snowflake-react-native-button)"
11+
"node_modules/(?!react-native|tcomb-form-native|apsl-react-native-button)"
1212
],
1313
"verbose": true
1414
},
@@ -20,15 +20,15 @@
2020
"docs": "./node_modules/docker/docker -w -i src/ -o ../snowflake-pages "
2121
},
2222
"dependencies": {
23-
"snowflake-react-native-button": "git+https://git@github.com/bartonhammond/snowflake-react-native-button.git",
23+
"apsl-react-native-button": "3.0.0",
2424
"immutable": "3.8.1",
2525
"key-mirror": "1.0.1",
26-
"react": "15.2.0",
26+
"react": "15.2.1",
2727
"react-native": "0.30.0",
2828
"react-native-navbar": "1.5.0",
2929
"react-native-router-flux": "3.31.1",
3030
"react-native-simple-store": "1.0.1",
31-
"react-native-simpledialog-android": "git+https://git@github.com/bartonhammond/react-native-simpledialog-android.git",
31+
"react-native-simpledialog-android": "1.0.7",
3232
"react-native-vector-icons": "2.0.3",
3333
"react-redux": "4.4.5",
3434
"redux": "3.5.2",

src/components/FormButton.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import
1919
/**
2020
* The platform neutral button
2121
*/
22-
const Button = require('snowflake-react-native-button');
22+
const Button = require('apsl-react-native-button');
2323

2424
/**
2525
* ## Styles

src/containers/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ from 'react-native';
4747
/**
4848
* The platform neutral button
4949
*/
50-
const Button = require('snowflake-react-native-button');
50+
const Button = require('apsl-react-native-button');
5151

5252

5353
/**

0 commit comments

Comments
 (0)