This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +8
-17
lines changed Expand file tree Collapse file tree 7 files changed +8
-17
lines changed Original file line number Diff line number Diff line change 22.DS_Store
33node_modules
44* .tgz
5- scripts /postinstall.js
5+ scripts /postinstall.js
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ CHANGELOG.md
55* .tgz
66scripts /webpack.config.js
77scripts /installer.js
8- scripts /winston-mock.js
8+ scripts /winston-mock.js
Original file line number Diff line number Diff line change @@ -218,9 +218,5 @@ that is being updated otherwise it will seem as though your updates have no effe
218218#### Found play-services:9.0.0, but version 9.0.2 is needed..
219219Update your Android bits like the issue above and reinstall the android platform in your project.
220220
221- #### EEXIST: file already exists, symlink '../mkdirp/bin/cmd.js
222- This is a race condition in a tool deep down the toolchain, so not the fault of this plugin.
223- Just rerun the build, it only pops up sometimes.
224-
225221## Credits
226222The starting point for this plugin was [ this great Gist] ( https://gist.github.com/jbristowe/c89a7bcae7fc9a035ee7 ) by [ John Bristowe] ( https://github.com/jbristowe ) .
Original file line number Diff line number Diff line change 1111 }
1212 },
1313 "scripts" : {
14- "bundle-installer" : " webpack --config scripts/webpack.config.js scripts/installer.js scripts/postinstall.js" ,
14+ "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"
1716 "postinstall" : " node scripts/postinstall.js" ,
1817 "config" : " node scripts/postinstall.js config"
1918 },
4645 },
4746 "homepage" : " https://github.com/eddyverbruggen/nativescript-plugin-firebase" ,
4847 "devDependencies" : {
49- "prompt" : " ^1.0.0" ,
48+ "prompt-lite" : " ^0.1.1" ,
49+ "xcode" : " 0.8.0" ,
5050 "webpack" : " ~2.1.0-beta.25"
51- "dependencies" : {
52- "app-root-path" : " ^2.0.1" ,
53- "prompt-lite" : " 0.1.1"
5451 }
5552}
Original file line number Diff line number Diff line change 11var fs = require ( 'fs' ) ;
22var path = require ( 'path' ) ;
33var prompt = require ( 'prompt-lite' ) ;
4- var path = require ( 'path' ) ;
5- var prompt = require ( 'prompt' ) ;
64
75// Default settings for using ios and android with Firebase
86var usingiOS = false , usingAndroid = false ;
@@ -15,7 +13,7 @@ var directories = {
1513
1614console . log ( 'NativeScript Firebase Plugin Installation' ) ;
1715
18- var appRoot = require ( 'app-root-path' ) . toString ( ) ;
16+ var appRoot = "../../" ;
1917var pluginConfigPath = path . join ( appRoot , "firebase.nativescript.json" ) ;
2018
2119var config = { } ;
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ module.exports = {
1717 //pkginfo is unpackable too, but we can replace it with a simple expression
1818 "pkginfo" : "function(){}"
1919 }
20- }
20+ } ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module.exports.Logger.prototype = {
44 cli : function ( ) { } ,
55 help : function ( ) { } ,
66 input : function ( ) { } ,
7- error : function ( ) { } ,
7+ error : function ( ) { }
88} ;
99
1010module . exports . transports = {
You can’t perform that action at this time.
0 commit comments