Socket
Socket
Sign inDemoInstall

firebase-import

Package Overview
Dependencies
9
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

6

bin/firebase-import.js

@@ -19,3 +19,3 @@ #!/usr/bin/env node

.demand('firebase_url')
.describe('firebase_url', 'Firebase URL (e.g. https://test.firebaseio.com/).')
.describe('firebase_url', 'Firebase URL (e.g. https://test.firebaseio.com/dest/path).')
.alias('f', 'firebase_url')

@@ -52,5 +52,5 @@

var connFunc = ref.child('.info/connected').on('value', function(s) {
var connFunc = ref.root().child('.info/connected').on('value', function(s) {
if(s.val() === true) {
ref.child('.info/connected').off('value', connFunc);
ref.root().child('.info/connected').off('value', connFunc);

@@ -57,0 +57,0 @@ if (argv.auth) {

{
"name": "firebase-import",
"description": "npm config for Firebase Import",
"version": "1.1.1",
"version": "1.1.2",
"dependencies": {
"firebase": "~1.0.15",
"optimist": "~0.5.2",
"firebase": "~0.5.4",
"progress": "~0.1.0"

@@ -21,3 +21,5 @@ },

"license": "BSD",
"bin": { "firebase-import": "./bin/firebase-import.js" }
"bin": {
"firebase-import": "./bin/firebase-import.js"
}
}

@@ -22,3 +22,3 @@ # Firebase-Import

Options:
--firebase_url, -f Firebase URL (e.g. https://test.firebaseio.com/). [required]
--firebase_url, -f Firebase URL (e.g. https://test.firebaseio.com/dest/path). [required]
--json, -j The JSON file to import. [required]

@@ -25,0 +25,0 @@ --merge, -m Write the top-level children without overwriting the whole parent. [boolean]

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc