taraskevizer 10.0.0 → 10.1.0

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.
package/dist/bin.js CHANGED
@@ -6,7 +6,7 @@ const printWithPrefix = (msg) => {
6
6
  process.argv.splice(0, 2);
7
7
  const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
8
8
  if (checkForOptions(['-v', '--version'])) {
9
- printWithPrefix("10.0.0");
9
+ printWithPrefix("10.1.0");
10
10
  process.exit(0);
11
11
  }
12
12
  if (checkForOptions(['-h', '--help'])) {
package/dist/config.d.ts CHANGED
@@ -38,7 +38,7 @@ export declare class TaraskConfig {
38
38
  *
39
39
  * @default null
40
40
  */
41
- wrappers: null | Wrappers;
41
+ wrappers: null | Partial<Wrappers>;
42
42
  /**
43
43
  * Do replace ґ(g) by г(h) in cyrillic alphabet?
44
44
  *
@@ -88,7 +88,7 @@ export declare class TaraskConfig {
88
88
  * });
89
89
  */
90
90
  export declare const htmlConfigOptions: {
91
- readonly wrappers: Required<Wrappers>;
91
+ readonly wrappers: Wrappers;
92
92
  readonly g: false;
93
93
  readonly newLine: "<br>";
94
94
  readonly leftAngleBracket: "&lt";
@@ -4,11 +4,11 @@ export type VariationWrappers = {
4
4
  [p in Variation]: TransformString;
5
5
  };
6
6
  export type Wrappers = {
7
- fix?: TransformString;
8
- variable?: VariationWrappers;
9
- letterH?: TransformString;
7
+ fix: TransformString;
8
+ variable: VariationWrappers;
9
+ letterH: TransformString;
10
10
  };
11
11
  export declare const defaultVariation: VariationWrappers;
12
- export declare const html: Required<Wrappers>;
13
- export declare const ansiColor: Required<Wrappers>;
12
+ export declare const html: Wrappers;
13
+ export declare const ansiColor: Wrappers;
14
14
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "10.0.0",
3
+ "version": "10.1.0",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",