source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/rpc/rpc-ipc/RpcIpcMessageChannel.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 550 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const index_1 = require("../index");
4const RpcIpcMessagePort_1 = require("./RpcIpcMessagePort");
5function createRpcIpcMessageChannel(servicePath, memoryLimit = 2048) {
6 const port = RpcIpcMessagePort_1.createRpcIpcForkedProcessMessagePort(servicePath, memoryLimit);
7 // linked by the child_process IPC implementation - no manual linking needed
8 return index_1.createRpcMessageChannel(port, port);
9}
10exports.createRpcIpcMessageChannel = createRpcIpcMessageChannel;
Note: See TracBrowser for help on using the repository browser.