greybel-mock-environment 2.4.1 → 2.4.3

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.
@@ -263,7 +263,6 @@ var Device = /** @class */ (function () {
263
263
  if (this.processes.has(pid)) {
264
264
  var process_4 = this.processes.get(pid);
265
265
  if (!process_4.protected) {
266
- process_4.kill();
267
266
  this.processes.delete(pid);
268
267
  return true;
269
268
  }
@@ -18,5 +18,4 @@ export declare class Process {
18
18
  readonly protected: boolean;
19
19
  readonly ref: ProcessRef | null;
20
20
  constructor(options: ProcessOptions);
21
- kill(): void;
22
21
  }
@@ -13,11 +13,6 @@ var Process = /** @class */ (function () {
13
13
  this.protected = options.protected;
14
14
  this.ref = (_a = options.ref) !== null && _a !== void 0 ? _a : null;
15
15
  }
16
- Process.prototype.kill = function () {
17
- if (this.ref !== null) {
18
- this.ref.exit();
19
- }
20
- };
21
16
  return Process;
22
17
  }());
23
18
  exports.Process = Process;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "greybel-mock-environment",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "Mock environment",
5
5
  "main": "dist/index",
6
6
  "typings": "dist/index",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@types/random-seed": "^0.3.3",
50
50
  "blueimp-md5": "^2.19.0",
51
- "greyscript-core": "~1.4.2",
51
+ "greyscript-core": "~1.5.0",
52
52
  "random-seed": "^0.3.0",
53
53
  "random-username-generator": "^1.0.4"
54
54
  }