@remixproject/engine-node
Advanced tools
Comparing version 0.3.0-beta.7 to 0.3.0-beta.8
@@ -1,2 +0,5 @@ | ||
export * from './lib/child-process'; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./lib/child-process"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -1,4 +0,7 @@ | ||
import { PluginConnector } from '@remixproject/engine'; | ||
import { fork } from 'child_process'; | ||
export class ChildProcessPlugin extends PluginConnector { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ChildProcessPlugin = void 0; | ||
const engine_1 = require("@remixproject/engine"); | ||
const child_process_1 = require("child_process"); | ||
class ChildProcessPlugin extends engine_1.PluginConnector { | ||
constructor(profile) { | ||
@@ -16,3 +19,3 @@ super(profile); | ||
connect(url) { | ||
this.process = fork(url); | ||
this.process = child_process_1.fork(url); | ||
this.process.on(...this.listener); | ||
@@ -26,2 +29,3 @@ } | ||
} | ||
exports.ChildProcessPlugin = ChildProcessPlugin; | ||
//# sourceMappingURL=child-process.js.map |
{ | ||
"name": "@remixproject/engine-node", | ||
"version": "0.3.0-beta.7", | ||
"version": "0.3.0-beta.8", | ||
"homepage": "https://github.com/ethereum/remix-plugin/tree/master/packages/engine/node#readme", | ||
@@ -27,6 +27,6 @@ "repository": { | ||
"dependencies": { | ||
"@remixproject/plugin-utils": "0.3.0-beta.7", | ||
"@remixproject/engine": "0.3.0-beta.7", | ||
"@remixproject/plugin-api": "0.3.0-beta.7" | ||
"@remixproject/plugin-utils": "0.3.0-beta.8", | ||
"@remixproject/engine": "0.3.0-beta.8", | ||
"@remixproject/plugin-api": "0.3.0-beta.6" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
3901
45
+ Added@remixproject/engine@0.3.0-beta.8(transitive)
+ Added@remixproject/plugin-api@0.3.0-beta.6(transitive)
+ Added@remixproject/plugin-utils@0.3.0-beta.8(transitive)
+ Addedtslib@2.0.1(transitive)
- Removed@remixproject/engine@0.3.0-beta.7(transitive)
- Removed@remixproject/plugin-api@0.3.0-beta.7(transitive)
- Removed@remixproject/plugin-utils@0.3.0-beta.7(transitive)