taraskevizer 8.0.0 → 8.0.1
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 +2 -2
- package/dist/bin.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[Full API documentation](https://gooseob.github.io/taraskevizer/)
|
|
2
|
+
|
|
1
3
|
# Install
|
|
2
4
|
|
|
3
5
|
With npm:
|
|
@@ -68,8 +70,6 @@ tarask('яна і іншыя', abcOnlyPipeline, latinWithJiCfg);
|
|
|
68
70
|
// "jana j jinšyja"
|
|
69
71
|
```
|
|
70
72
|
|
|
71
|
-
# [Full API documentation](https://gooseob.github.io/taraskevizer/)
|
|
72
|
-
|
|
73
73
|
# HTML tags
|
|
74
74
|
|
|
75
75
|
## tarF
|
package/dist/bin.js
CHANGED
|
@@ -14,7 +14,7 @@ const printWithPrefix = (msg) => {
|
|
|
14
14
|
process.argv.splice(0, 2);
|
|
15
15
|
const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
|
|
16
16
|
if (checkForOptions(["-v", "--version"])) {
|
|
17
|
-
printWithPrefix("8.0.
|
|
17
|
+
printWithPrefix("8.0.1");
|
|
18
18
|
process.exit(0);
|
|
19
19
|
}
|
|
20
20
|
if (checkForOptions(["-h", "--help"])) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taraskevizer",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"author": "GooseOb",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dev-bun": "bun test --watch",
|
|
49
49
|
"test": "esrun --send-code-mode=temporaryFile test",
|
|
50
50
|
"test-cli": "bun run build && esrun --send-code-mode=temporaryFile test",
|
|
51
|
-
"
|
|
51
|
+
"postinstall": "husky",
|
|
52
52
|
"typecheck": "tsc --project src/tsconfig.json",
|
|
53
53
|
"docs": "typedoc --out docs src/index.ts --skipErrorChecking"
|
|
54
54
|
},
|