moved RPCLibrary to Index

This commit is contained in:
Daniel Huebleitner
2019-10-29 20:20:41 +01:00
parent c8b0e65034
commit 45d6bb9062
5 changed files with 9 additions and 9 deletions
+5
View File
@@ -0,0 +1,5 @@
export * from './src/Backend';
export * from './src/Frontend';
export * from './src/Interfaces'
export * from './src/Types';
export * from './src/Utils'
+1 -1
View File
@@ -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
View File
@@ -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"
-5
View File
@@ -1,5 +0,0 @@
export * from './Backend';
export * from './Frontend';
export * from './Interfaces'
export * from './Types';
export * from './Utils'
+1 -1
View File
@@ -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)}