taraskevizer 7.0.2 → 7.0.3

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/README.md CHANGED
@@ -83,6 +83,9 @@ Type: `object` with schema: `{lower: Dict, upper?: Dict}`,
83
83
  where `Dict` is `[pattern: RegExp, result: string][]`
84
84
  (may be empty)
85
85
 
86
+ `ALPHABET` contains the following pre-defined alphabets:
87
+ `CYRILLIC`, `LATIN`, `LATIN_JI`, `ARABIC`
88
+
86
89
  Default value: `ALPHABET.CYRILLIC`
87
90
 
88
91
  ### j
@@ -108,7 +111,7 @@ Default `true`
108
111
 
109
112
  If set to false, may cause unwanted changes in acronyms.
110
113
 
111
- Is always `false` in `convertAlphabetOnly`.
114
+ Is always `false` in `abcOnlyPipeline`.
112
115
 
113
116
  ## html
114
117
 
package/dist/bin.js CHANGED
@@ -16,7 +16,7 @@ const printWithPrefix = (msg) => {
16
16
  process.argv.splice(0, 2);
17
17
  const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
18
18
  if (checkForOptions(["-v", "--version"])) {
19
- printWithPrefix("7.0.2");
19
+ printWithPrefix("7.0.3");
20
20
  process.exit(0);
21
21
  }
22
22
  if (checkForOptions(["-h", "--help"])) {
package/dist/index.cjs CHANGED
@@ -28,8 +28,8 @@ __export(src_exports, {
28
28
  dicts: () => dict_exports,
29
29
  htmlPipeline: () => htmlPipeline,
30
30
  lib: () => lib_exports,
31
- pipelineSteps: () => steps_exports,
32
31
  plainTextPipeline: () => plainTextPipeline,
32
+ steps: () => steps_exports,
33
33
  tarask: () => tarask
34
34
  });
35
35
  module.exports = __toCommonJS(src_exports);
@@ -2564,7 +2564,7 @@ var htmlPipeline = createPipeline(
2564
2564
  dicts,
2565
2565
  htmlPipeline,
2566
2566
  lib,
2567
- pipelineSteps,
2568
2567
  plainTextPipeline,
2568
+ steps,
2569
2569
  tarask
2570
2570
  });
package/dist/index.d.ts CHANGED
@@ -247,4 +247,4 @@ declare namespace index {
247
247
  export { index_afterTarask as afterTarask, index_ansiColorWrappers as ansiColorWrappers, index_dictFrom as dictFrom, index_highlightDiff as highlightDiff, index_htmlWrappers as htmlWrappers, index_replaceG as replaceG, index_replaceWithDict as replaceWithDict, index_restoreCase as restoreCase };
248
248
  }
249
249
 
250
- export { ALPHABET, type HtmlOptions, type NonHtmlOptions, REPLACE_J, TaraskConfig, type TaraskOptions, VARIATION, abcOnlyPipeline, index$2 as dicts, htmlPipeline, index as lib, index$1 as pipelineSteps, plainTextPipeline, tarask };
250
+ export { ALPHABET, type HtmlOptions, type NonHtmlOptions, REPLACE_J, TaraskConfig, type TaraskOptions, VARIATION, abcOnlyPipeline, index$2 as dicts, htmlPipeline, index as lib, plainTextPipeline, index$1 as steps, tarask };
package/dist/index.js CHANGED
@@ -2533,7 +2533,7 @@ export {
2533
2533
  dict_exports as dicts,
2534
2534
  htmlPipeline,
2535
2535
  lib_exports as lib,
2536
- steps_exports as pipelineSteps,
2537
2536
  plainTextPipeline,
2537
+ steps_exports as steps,
2538
2538
  tarask
2539
2539
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "7.0.2",
3
+ "version": "7.0.3",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",