Compare commits

..

4 Commits

Author SHA1 Message Date
84d3a6310d 3.0.7 2023-11-01 14:12:53 +01:00
984f7e7bb6 fix(core): update 2023-11-01 14:12:53 +01:00
f4e548aa2c 3.0.6 2023-07-24 13:59:47 +02:00
3f85e9fa3c fix(core): update 2023-07-24 13:59:46 +02:00
4 changed files with 1301 additions and 202 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartrx", "name": "@push.rocks/smartrx",
"version": "3.0.5", "version": "3.0.7",
"private": false, "private": false,
"description": "smart wrapper for rxjs", "description": "smart wrapper for rxjs",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -18,8 +18,8 @@
"@gitzone/tsbundle": "^2.0.8", "@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44", "@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77", "@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.4.4" "@types/node": "^20.8.10"
}, },
"dependencies": { "dependencies": {
"@push.rocks/smartpromise": "^4.0.2", "@push.rocks/smartpromise": "^4.0.2",

1490
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartrx', name: '@push.rocks/smartrx',
version: '3.0.5', version: '3.0.7',
description: 'smart wrapper for rxjs' description: 'smart wrapper for rxjs'
} }

View File

@ -1,10 +1,10 @@
// this file is intended to keep the bundle size down // this file is intended to keep the bundle size down
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from } from 'rxjs'; export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of } from 'rxjs';
export type { Observer } from 'rxjs'; export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators'; import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators';
export const ops = { export const ops = {
debounce, debounce,
@ -13,4 +13,5 @@ export const ops = {
startWith, startWith,
takeUntil, takeUntil,
throttleTime, throttleTime,
filter,
}; };