@codifycli/plugin-core 1.1.0-beta21 → 1.1.0-beta22

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.
@@ -20,7 +20,7 @@ const validateSudoRequestResponse = ajv.compile(CommandRequestResponseDataSchema
20
20
  */
21
21
  export class SequentialPty {
22
22
  logBuffer = [];
23
- static MAX_LOG_LINES = 100;
23
+ static MAX_LOG_LINES = 30;
24
24
  getLogs() {
25
25
  return [...this.logBuffer];
26
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codifycli/plugin-core",
3
- "version": "1.1.0-beta21",
3
+ "version": "1.1.0-beta22",
4
4
  "description": "TypeScript library for building Codify plugins to manage system resources (applications, CLI tools, settings) through infrastructure-as-code",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -29,7 +29,7 @@ const validateSudoRequestResponse = ajv.compile(CommandRequestResponseDataSchema
29
29
  */
30
30
  export class SequentialPty implements IPty {
31
31
  private logBuffer: string[] = [];
32
- private static readonly MAX_LOG_LINES = 100;
32
+ private static readonly MAX_LOG_LINES = 30;
33
33
 
34
34
  getLogs(): string[] {
35
35
  return [...this.logBuffer];