codify-plugin-lib 1.0.116 → 1.0.117

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.
@@ -94,7 +94,7 @@ export class BackgroundPty {
94
94
  this.basePty.onExit((status) => {
95
95
  resolve(status);
96
96
  });
97
- this.basePty.kill();
97
+ this.basePty.kill('SIGKILL');
98
98
  });
99
99
  }
100
100
  async initialize() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.116",
3
+ "version": "1.0.117",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -117,7 +117,7 @@ export class BackgroundPty implements IPty {
117
117
  resolve(status);
118
118
  })
119
119
 
120
- this.basePty.kill()
120
+ this.basePty.kill('SIGKILL')
121
121
  })
122
122
  }
123
123