Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firecomponent

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firecomponent - npm Package Compare versions

Comparing version 1.2.11 to 1.2.12

2

package.json
{
"name": "firecomponent",
"description": "Declarative components that bind data to firebase",
"version": "1.2.11",
"version": "1.2.12",
"author": {

@@ -6,0 +6,0 @@ "name": "dmattia",

@@ -1,7 +0,7 @@

import FireHtml from './components/FireHtml.vue'
import FireText from './components/FireText.vue'
import FireImage from './components/FireImage.vue'
import FireHtml from './components/FireHtml.vue';
import FireText from './components/FireText.vue';
import FireImage from './components/FireImage.vue';
import firebase from 'firebase'
import VueProgressiveImage from 'vue-progressive-image'
import firebase from 'firebase';
import VueProgressiveImage from 'vue-progressive-image';

@@ -14,3 +14,3 @@ // Install the components

if (options.databaseURL !== undefined) {
firebase.initializeApp(options)
firebase.initializeApp(options);
Vue.prototype.$firebase = firebase;

@@ -21,4 +21,4 @@ } else {

} else {
console.error('You must add your firebase configuration object to the firecomponent library')
return
console.error('You must add your firebase configuration object to the firecomponent library');
return;
}

@@ -38,3 +38,3 @@

FireImage
}
};

@@ -45,11 +45,11 @@ /* -- Plugin definition & Auto-install -- */

// Plugin
const plugin = {
var plugin = {
/* eslint-disable no-undef */
install
}
install: install
};
export default plugin
export default plugin;
// Auto-install
let GlobalVue = null;
var GlobalVue = null;
if (typeof window !== 'undefined') {

@@ -63,3 +63,3 @@ GlobalVue = window.Vue;

Vue.use(plugin, config);
}
};
}
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc