Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit dd5a4a2

Browse files
EddyVerbruggeneddyverbruggen
authored andcommitted
tns plugin add nativescript-plugin-firebase seems to hang forever #275
1 parent f3f0b27 commit dd5a4a2

File tree

3 files changed

+211
-203
lines changed

3 files changed

+211
-203
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ From the command prompt go to your app's root folder and execute:
3636
```
3737
tns plugin add nativescript-plugin-firebase
3838
```
39-
_This will guide you through installing additional components. Check the doc links above to see what's what. You can always change your choices later._
39+
40+
Now start an install script which will guide you through installing additional components. Check the doc links above to see what's what. You can always change your choices later.
41+
42+
```
43+
cd node_modules/nativescript-plugin-firebase
44+
npm run setup
45+
```
4046

4147
### Config
4248
If you choose to save your config during the installation, the supported options may be saved in the `firebase.nativescript.json` at the root of your app.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-plugin-firebase",
3-
"version": "3.9.2",
3+
"version": "3.9.3",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",
@@ -13,7 +13,7 @@
1313
"scripts": {
1414
"bundle-installer": "npm install --ignore-scripts && webpack --config scripts/webpack.config.js scripts/installer.js scripts/postinstall.js",
1515
"prepublish": "npm run bundle-installer",
16-
"postinstall": "node scripts/postinstall.js",
16+
"setup": "node scripts/postinstall.js",
1717
"config": "node scripts/postinstall.js config"
1818
},
1919
"repository": {
@@ -45,8 +45,8 @@
4545
},
4646
"homepage": "https://github.com/eddyverbruggen/nativescript-plugin-firebase",
4747
"devDependencies": {
48-
"prompt-lite": "^0.1.1",
48+
"prompt-lite": "^0.1.0",
4949
"xcode": "0.8.0",
50-
"webpack": "~2.1.0-beta.25"
50+
"webpack": "~2.2.0"
5151
}
5252
}

0 commit comments

Comments
 (0)