Comparing version 3.0.3 to 3.0.4
{ | ||
"name": "baconjs", | ||
"description": "A small functional reactive programming lib for JavaScript.", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"keywords": [ | ||
@@ -69,3 +69,3 @@ "bacon.js", | ||
"scripts": { | ||
"test": "./scripts/runtests", | ||
"test": "mocha -r ts-node/register test/*.ts test/notinbrowser/*.ts", | ||
"perftest": "performance/PerformanceTest.ts", | ||
@@ -75,3 +75,3 @@ "lint": "echo no linter at the moment", | ||
"prepublish": "npm run lint && npm run dist", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"browsertest-bundle": "browsertest/browserify", | ||
@@ -78,0 +78,0 @@ "browsertest-open": "open browsertest/mocha.runner.html", |
@@ -432,15 +432,2 @@ Bacon.js | ||
You can also build a bundle with selected features only. For instance | ||
scripts/dist flatmap combine takeuntil | ||
The build system will do its best to determine the dependencies of the selected | ||
features and include those into the bundle too. You can also test the integrity | ||
of the bundle with your selected features using | ||
scripts/runtests flatmap combine takeuntil | ||
TODO: partial testing currently broken. | ||
Test | ||
@@ -447,0 +434,0 @@ ==== |
@@ -8,2 +8,3 @@ { | ||
"strictPropertyInitialization": true, | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
@@ -10,0 +11,0 @@ "target": "ES5", |
@@ -38,3 +38,3 @@ import { EventStream } from "./observable"; | ||
*/ | ||
plug(input: Observable<V>): (() => void) | undefined; | ||
plug<V2 extends V>(input: Observable<V2>): (() => void) | undefined; | ||
/** | ||
@@ -63,4 +63,4 @@ Ends the stream. Sends an [End](end.html) event to all subscribers. | ||
/** @hidden */ | ||
unsubscribeInput(input: Observable<V>): void; | ||
unsubscribeInput(input: Observable<any>): void; | ||
} | ||
export {}; |
import { EventStream, EventStreamOptions } from "./observable"; | ||
import Observable from "./observable"; | ||
/** @hidden */ | ||
export declare function concatE<V>(left: EventStream<V>, right: Observable<V>, options?: EventStreamOptions): EventStream<V>; | ||
export declare function concatE<V, V2>(left: EventStream<V>, right: Observable<V2>, options?: EventStreamOptions): EventStream<V | V2>; | ||
/** | ||
@@ -6,0 +6,0 @@ Concatenates given array of EventStreams or Properties. Works by subcribing to the first source, and listeing to that |
@@ -88,3 +88,3 @@ import { Desc } from "./describe"; | ||
*/ | ||
abstract concat(other: Observable<V>): Observable<V>; | ||
abstract concat<V2>(other: Observable<V2>): Observable<V | V2>; | ||
/** | ||
@@ -744,3 +744,3 @@ Throttles stream/property by given amount | ||
*/ | ||
concat(other: Observable<V>): Property<V>; | ||
concat<V2>(other: Observable<V2>): Property<V | V2>; | ||
/** @hidden */ | ||
@@ -1012,3 +1012,3 @@ delayChanges(desc: Desc, f: EventStreamDelay<V>): this; | ||
*/ | ||
concat(other: Observable<V>, options?: EventStreamOptions): EventStream<V>; | ||
concat<V2>(other: Observable<V2>, options?: EventStreamOptions): EventStream<V | V2>; | ||
/** @hidden */ | ||
@@ -1128,3 +1128,3 @@ delayChanges(desc: Desc, f: EventStreamDelay<V>): this; | ||
*/ | ||
merge(other: EventStream<V>): EventStream<V>; | ||
merge<V2>(other: EventStream<V2>): EventStream<V | V2>; | ||
/** | ||
@@ -1131,0 +1131,0 @@ Returns a stream/property that inverts boolean values (using `!`) |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
export declare type Reply = "<no-more>" | undefined | void; | ||
export declare type Reply = "<no-more>" | any; | ||
/** | ||
@@ -8,0 +8,0 @@ * Reply for "more data, please". |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
0
466181
126
11787
515