@eagleoutice/flowr 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/r-bridge/shell.js +2 -2
- package/util/version.js +1 -1
package/package.json
CHANGED
package/r-bridge/shell.js
CHANGED
|
@@ -27,7 +27,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.RShell = exports.DEFAULT_R_SHELL_OPTIONS = exports.DEFAULT_R_SHELL_EXEC_OPTIONS = exports.DEFAULT_R_PATH = exports.DEFAULT_OUTPUT_COLLECTOR_CONFIGURATION = void 0;
|
|
30
|
-
const
|
|
30
|
+
const child_process_1 = require("child_process");
|
|
31
31
|
const objects_1 = require("../util/objects");
|
|
32
32
|
const readline = __importStar(require("readline"));
|
|
33
33
|
const log_1 = require("../util/log");
|
|
@@ -231,7 +231,7 @@ class RShellSession {
|
|
|
231
231
|
options;
|
|
232
232
|
collectionTimeout;
|
|
233
233
|
constructor(options, log) {
|
|
234
|
-
this.bareSession = (0,
|
|
234
|
+
this.bareSession = (0, child_process_1.spawn)(options.pathToRExecutable, options.commandLineOptions, {
|
|
235
235
|
env: options.env,
|
|
236
236
|
cwd: options.cwd,
|
|
237
237
|
windowsHide: true
|
package/util/version.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.flowrVersion = void 0;
|
|
4
4
|
const semver_1 = require("semver");
|
|
5
5
|
// this is automatically replaced with the current version by release-it
|
|
6
|
-
const version = '2.0.
|
|
6
|
+
const version = '2.0.1';
|
|
7
7
|
function flowrVersion() {
|
|
8
8
|
return new semver_1.SemVer(version);
|
|
9
9
|
}
|