@erickmerchant/framework
Advanced tools
Comparing version 9.0.3 to 9.1.0
@@ -40,6 +40,4 @@ "use strict"; | ||
function next(callback) { | ||
process.nextTick(function () { | ||
callback({ target: target, dispatch: dispatch }); | ||
}); | ||
process.nextTick(callback, { target: target, dispatch: dispatch }); | ||
} | ||
}; |
@@ -32,6 +32,4 @@ module.exports = function ({target, store, component, diff, raf}) { | ||
function next (callback) { | ||
process.nextTick(function () { | ||
callback({target, dispatch}) | ||
}) | ||
process.nextTick(callback, {target, dispatch}) | ||
} | ||
} |
{ | ||
"name": "@erickmerchant/framework", | ||
"version": "9.0.3", | ||
"version": "9.1.0", | ||
"description": "A simple data down, actions up framework.", | ||
@@ -28,3 +28,3 @@ "main": "dist/main.js", | ||
"nyc": "^10.0.0", | ||
"standard": "^9.0.0", | ||
"standard": "^10.0.0", | ||
"tape": "^4.6.0" | ||
@@ -31,0 +31,0 @@ }, |
# @erickmerchant/framework | ||
This scoped package is my personal framework. | ||
This scoped package is my personal framework. I wrote it to understand how modern javascript frameworks do things. It's meant to be used with browserify. | ||
I wrote it to understand how modern javascript frameworks do things. It's greatly inspired by React and Redux, etc, obviously. Also hyperx, which demonstrated that you can use tagged template strings instead of JSX, was a huge inspiration. | ||
I also wrote it because I don't really like any of the options out there. I wouldn't necessarily use it for anything serious, but intend to use it for any personal stuff I do. | ||
It is meant to be used with browserify. | ||
## An Example | ||
@@ -13,0 +6,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7864
123
133