[tests] import RNFirebase for parent directory rather than from npm file:.. syntax
This commit is contained in:
parent
11734e51bd
commit
bc653beb26
|
@ -24,6 +24,7 @@ android/local.properties
|
||||||
|
|
||||||
# Gradle generated files
|
# Gradle generated files
|
||||||
android/.gradle/
|
android/.gradle/
|
||||||
|
firebase
|
||||||
|
|
||||||
# Signing files
|
# Signing files
|
||||||
android/.signing/
|
android/.signing/
|
||||||
|
@ -56,6 +57,7 @@ android/gradlew
|
||||||
android/build
|
android/build
|
||||||
android/gradlew.bat
|
android/gradlew.bat
|
||||||
android/gradle/
|
android/gradle/
|
||||||
|
lib/.watchmanconfig
|
||||||
.idea
|
.idea
|
||||||
.idea
|
.idea
|
||||||
coverage
|
coverage
|
||||||
|
|
|
@ -61,3 +61,5 @@ docs
|
||||||
coverage
|
coverage
|
||||||
yarn.lock
|
yarn.lock
|
||||||
tests
|
tests
|
||||||
|
lib/.watchmanconfig
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,12 @@
|
||||||
"dev": "npm run compile -- --watch",
|
"dev": "npm run compile -- --watch",
|
||||||
"lint": "eslint ./src",
|
"lint": "eslint ./src",
|
||||||
"publish_pages": "gh-pages -d public/",
|
"publish_pages": "gh-pages -d public/",
|
||||||
|
"tests-npm-install": "cd tests && npm install",
|
||||||
"tests-packager": "cd tests && npm run start",
|
"tests-packager": "cd tests && npm run start",
|
||||||
|
"watch:add": "wml add $(node --eval \"console.log(require('path').resolve('./lib'));\") $(node --eval \"console.log(require('path').resolve('./tests/firebase'));\")",
|
||||||
|
"watch:list": "wml list",
|
||||||
|
"watch:start": "watchman watch $(node --eval \"console.log(require('path').resolve('./lib'));\") && wml start",
|
||||||
|
"watch:stop": "watchman watch-del $(node --eval \"console.log(require('path').resolve('./lib'));\") && wml stop",
|
||||||
"tests-pod-install": "cd tests && npm run ios:pod:install",
|
"tests-pod-install": "cd tests && npm run ios:pod:install",
|
||||||
"flow": "flow"
|
"flow": "flow"
|
||||||
},
|
},
|
||||||
|
@ -73,7 +78,8 @@
|
||||||
"flow-bin": "^0.40.0",
|
"flow-bin": "^0.40.0",
|
||||||
"react": "^15.3.0",
|
"react": "^15.3.0",
|
||||||
"react-dom": "^15.3.0",
|
"react-dom": "^15.3.0",
|
||||||
"react-native": "^0.42.0"
|
"react-native": "^0.42.0",
|
||||||
|
"wml": "0.0.82"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bows": "^1.6.0",
|
"bows": "^1.6.0",
|
||||||
|
|
Loading…
Reference in New Issue