Compare commits

..

4 Commits

Author SHA1 Message Date
090142cb16 2.0.13 2020-05-27 19:44:35 +00:00
b05a8e4fa4 fix(core): update 2020-05-27 19:44:35 +00:00
66ee8ba0df 2.0.12 2020-05-27 18:49:44 +00:00
f9d8175c8c fix(core): update 2020-05-27 18:49:44 +00:00
4 changed files with 18 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartrx",
"version": "2.0.11",
"version": "2.0.13",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartrx",
"version": "2.0.11",
"version": "2.0.13",
"private": false,
"description": "smart wrapper for rxjs",
"main": "dist_ts/index.js",

View File

@ -0,0 +1,15 @@
// this file is intended to keep the bundle size down
export {
Observable,
Subject,
fromEvent
} from 'rxjs';
import { startWith, takeUntil, map } from 'rxjs/operators';
export const ops = {
startWith,
takeUntil,
map
};

View File

@ -1,5 +1,5 @@
import * as lik from '@pushrocks/lik';
import * as rxjs from 'rxjs';
import * as rxjs from './smartrx.plugins.rxjs';
import * as smartpromise from '@pushrocks/smartpromise';
export { lik, rxjs, smartpromise };