codify-plugin-lib 1.0.168 → 1.0.169

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.
@@ -83,7 +83,7 @@ export class BackgroundPty {
83
83
  resolve(null);
84
84
  }
85
85
  });
86
- console.log(`Running command ${cmd}`);
86
+ console.log(`Running command ${cmd}${options?.cwd ? ` (cwd: ${options.cwd})` : ''}`);
87
87
  this.basePty.write(`${command}\r`);
88
88
  }));
89
89
  }).finally(async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.168",
3
+ "version": "1.0.169",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -101,7 +101,7 @@ export class BackgroundPty implements IPty {
101
101
  }
102
102
  });
103
103
 
104
- console.log(`Running command ${cmd}`)
104
+ console.log(`Running command ${cmd}${options?.cwd ? ` (cwd: ${options.cwd})` : ''}`)
105
105
  this.basePty.write(`${command}\r`);
106
106
 
107
107
  }));