mobservable
Advanced tools
Comparing version 1.1.6 to 1.1.7
@@ -0,1 +1,5 @@ | ||
# 1.1.7 | ||
* Fixed #77: package consumers with --noImplicitAny should be able to build | ||
# 1.1.6 | ||
@@ -2,0 +6,0 @@ |
import { Lambda } from './interfaces'; | ||
export default class SimpleEventEmitter { | ||
listeners: { | ||
(data?): void; | ||
(...data: any[]): void; | ||
}[]; | ||
@@ -6,0 +6,0 @@ emit(...data: any[]): any; |
{ | ||
"name": "mobservable", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"description": "Observable data. Reactive functions. Simple code.", | ||
@@ -19,3 +19,3 @@ "main": "lib/index.js", | ||
"buildtest": "npm run build && npm run build-typescript-tests && npm run build-babel-tests", | ||
"build-typescript-tests": "tsc -m commonjs -t es5 --experimentalDecorators --outDir test test/typescript-tests.ts", | ||
"build-typescript-tests": "tsc -m commonjs -t es5 --experimentalDecorators --noImplicitAny --outDir test test/typescript-tests.ts", | ||
"build-babel-tests": "babel --stage 0 test/babel/babel-tests.js -o test/babel-tests.js" | ||
@@ -22,0 +22,0 @@ }, |
@@ -27,3 +27,3 @@ # mobservable | ||
So that your actions, stores and user interface can remain KISS. | ||
Besides that, it is [fast](mendix.com/tech-blog/making-react-reactive-pursuit-high-performing-easily-maintainable-react-apps/). | ||
Besides that, it is [fast](https://www.mendix.com/tech-blog/making-react-reactive-pursuit-high-performing-easily-maintainable-react-apps/). | ||
@@ -30,0 +30,0 @@ ## The essentials |
Sorry, the diff of this file is not supported yet
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
175399