tnp-core 16.6.24 → 16.6.28

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.
@@ -55,7 +55,7 @@ export declare namespace CoreModels {
55
55
  * Use big buffer for big webpack logs
56
56
  */
57
57
  biggerBuffer?: boolean;
58
- exitOnError?: boolean;
58
+ askToTryAgainOnError?: boolean;
59
59
  exitOnErrorCallback?: (code: number) => void;
60
60
  /**
61
61
  * From displaying in console
@@ -63,6 +63,7 @@ export declare namespace CoreModels {
63
63
  hideOutput?: {
64
64
  stdout?: boolean;
65
65
  stderr?: boolean;
66
+ acceptAllExitCodeAsSuccess?: boolean;
66
67
  };
67
68
  }
68
69
  /**
@@ -68,6 +68,11 @@ export declare class HelpersCore extends HelpersMessages {
68
68
  run(command: string, options?: CoreModels.RunOptions): {
69
69
  async(detach?: boolean, mockFun?: (stdoutCallback: (dataForStdout: any) => any, stdErrcCallback: (dataForStder: any) => any, shouldProcesBeDead?: () => boolean) => Promise<number> | number): any;
70
70
  };
71
+ questionYesNo(message: string, callbackTrue?: () => any, callbackFalse?: () => any, defaultValue?: boolean,
72
+ /**
73
+ * in non interactive mode
74
+ */
75
+ mustAnswerQuestion?: boolean): Promise<any>;
71
76
  /**
72
77
  * Quick fix for object values
73
78
  * @deprecated