coc-code-runner 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -0
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -6442,6 +6442,9 @@ async function activate(context) {
6442
6442
  if (_channel) {
6443
6443
  _channel.dispose();
6444
6444
  }
6445
+ if (_process) {
6446
+ _process.kill();
6447
+ }
6445
6448
  _channel = import_coc4.window.createOutputChannel("coc-code-runner");
6446
6449
  let command;
6447
6450
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coc-code-runner",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Code Runner for coc.nvim",
5
5
  "author": "cyl <a1008611abcd@126.com>",
6
6
  "license": "MIT",