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 +4 -1
- package/dist/bin.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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 `
|
|
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.
|
|
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
|
|
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