Compare commits

..

2 Commits

Author SHA1 Message Date
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 10 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -0,0 +1,7 @@
// this file is intended to keep the bundle size down
export {
Observable,
Subject,
fromEvent
} from 'rxjs';

View File

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