moved RPCLibrary to Index
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
export * from './src/Backend';
|
||||||
|
export * from './src/Frontend';
|
||||||
|
export * from './src/Interfaces'
|
||||||
|
export * from './src/Types';
|
||||||
|
export * from './src/Utils'
|
||||||
Generated
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rpclibrary",
|
"name": "rpclibrary",
|
||||||
"version": "1.3.9",
|
"version": "1.3.10",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "rpclibrary",
|
"name": "rpclibrary",
|
||||||
"version": "1.3.10",
|
"version": "1.3.11",
|
||||||
"description": "rpclibrary is a websocket on steroids!",
|
"description": "rpclibrary is a websocket on steroids!",
|
||||||
"main": "./js/src/RPCLibrary.js",
|
"main": "./js/Index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://www.versioncontrol.me/frontwork-vendor/rpclibrary"
|
"url": "https://www.versioncontrol.me/frontwork-vendor/rpclibrary"
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
export * from './Backend';
|
|
||||||
export * from './Frontend';
|
|
||||||
export * from './Interfaces'
|
|
||||||
export * from './Types';
|
|
||||||
export * from './Utils'
|
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
import { describe, it } from "mocha";
|
import { describe, it } from "mocha";
|
||||||
|
|
||||||
import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../src/RPCLibrary'
|
import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../Index'
|
||||||
import * as uuidv4 from "uuid/v4"
|
import * as uuidv4 from "uuid/v4"
|
||||||
|
|
||||||
const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)}
|
const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)}
|
||||||
|
|||||||
Reference in New Issue
Block a user