Skip to content

Commit

Permalink
Merge ef54a5a into 52105ab
Browse files Browse the repository at this point in the history
  • Loading branch information
brozeph committed Feb 11, 2019
2 parents 52105ab + ef54a5a commit e067123
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 41 deletions.
10 changes: 9 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@
]
],
"plugins": [
"@babel/plugin-transform-runtime"
[
"@babel/plugin-transform-runtime",
{
"corejs": 2,
"helpers": true,
"regenerator": true,
"useESModules": false
}
]
],
"sourceMaps": true
}
33 changes: 6 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-ipc-lib",
"version": "1.1.0",
"version": "1.1.1",
"description": "Enables creation and consumption of Unix domain socket based IPC channels between Node.js apps using JSON-RPC 2.0 as a protocol.",
"main": "./dist",
"scripts": {
Expand Down Expand Up @@ -34,8 +34,7 @@
},
"homepage": "https://github.com/PlayNetwork/json-ipc-lib#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.1",
"@babel/runtime-corejs2": "^7.3.1",
"debug": "^4.1.1",
"json-rpc-protocol": "^0.13.1"
},
Expand Down Expand Up @@ -72,6 +71,6 @@
"require": [
"@babel/register"
],
"sourceMap": true
"sourceMap": false
}
}
3 changes: 0 additions & 3 deletions src/Client.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import 'babel-polyfill';
import 'source-map-support/register';

import * as protocol from 'json-rpc-protocol';
import log from 'debug';
import net from 'net';
Expand Down
3 changes: 0 additions & 3 deletions src/Server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import 'babel-polyfill';
import 'source-map-support/register';

import * as protocol from 'json-rpc-protocol';
import EventEmitter from 'events';
import fs from 'fs';
Expand Down
3 changes: 0 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
import 'babel-polyfill';
import 'source-map-support/register';

export * from './Client';
export * from './Server';

0 comments on commit e067123

Please sign in to comment.