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

reflux

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reflux - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

bower.json
{
"name": "reflux",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "https://github.com/spoike/reflux",

@@ -5,0 +5,0 @@ "authors": [

@@ -5,2 +5,8 @@ # Changelog

## v0.2.1
* IE8 trailing comma bug fix [#145](https://github.com/spoike/refluxjs/pull/145)
* Multiple use of Reflux.connect bug fix [#142](https://github.com/spoike/refluxjs/issues/142), [#143](https://github.com/spoike/refluxjs/pull/143)
* Added .npmignore file, removing non-essential files from `npm install` [#125](https://github.com/spoike/refluxjs/issues/125)
## v0.2.0

@@ -7,0 +13,0 @@

{
"name": "reflux",
"version": "0.2.0",
"version": "0.2.1",
"description": "A simple library for uni-directional dataflow application architecture inspired by ReactJS Flux",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -16,15 +16,3 @@ var Reflux = require('../src'),

componentDidMount: function(){
var warned = false;
for(var m in Reflux.ListenerMethods){
if (this[m] && typeof console && typeof console.warn === "function" && !warned ){
console.warn(
"Component using Reflux.connect already had property '"+m+"'. "+
"Either you had your own property with that name which was now overridden, "+
"or you combined connect with ListenerMixin which is unnecessary as connect "+
"will include the ListenerMixin methods automatically."
);
warned = true;
}
this[m] = Reflux.ListenerMethods[m];
}
_.extend(this,Reflux.ListenerMethods);
var me = this, cb = (key === undefined ? this.setState : function(v){me.setState(_.object([key],[v]));});

@@ -31,0 +19,0 @@ this.listenTo(listenable,cb);

@@ -175,3 +175,3 @@ var _ = require('./utils'),

*/
joinStrict: maker("strict"),
joinStrict: maker("strict")
};

Sorry, the diff of this file is not supported yet

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