@@ -15,7 +15,7 @@ add aliases (for example) to complete your CLI.
1515
1616``` typescript
1717#! / usr / bin / env - S deno run
18- import { cliteRun } from " jsr:@jersou/clite@0.7.5 " ;
18+ import { cliteRun } from " jsr:@jersou/clite@0.7.6 " ;
1919// or import { cliteRun } from "@jersou/clite"; // after "deno add @jersou/clite"
2020// or import { cliteRun } from "clite-parser"; // after "npm install clite-parser" for Node usage
2121
@@ -86,7 +86,7 @@ Several examples can be found in the [examples/](./examples) folder.
8686Works with vanilla typescript or with experimentalDecorators = true
8787
8888` ` ` typescript
89- import { alias, cliteRun, help } from " jsr:@jersou/clite@0.7.5 " ;
89+ import { alias, cliteRun, help } from " jsr:@jersou/clite@0.7.6 " ;
9090
9191@help(" This tool is a little example of CliteParser" ) // optional description
9292class Tool {
@@ -138,7 +138,7 @@ Options:
138138# ## Full example without decorator (Javascript)
139139
140140` ` ` javascript
141- import { cliteRun } from " jsr:@jersou/clite@0.7.5 " ;
141+ import { cliteRun } from " jsr:@jersou/clite@0.7.6 " ;
142142
143143class Tool {
144144 _help = " This tool is a little example of CliteParser" ; // optional description
@@ -257,7 +257,7 @@ In summary :
257257### Help description with the `@help` decorator or inline help
258258
259259```typescript
260- import { cliteRun, help } from "jsr:@jersou/clite@0.7.5 ";
260+ import { cliteRun, help } from "jsr:@jersou/clite@0.7.6 ";
261261
262262@help("This tool is a little example of CliteParser")
263263class Tool {
@@ -289,7 +289,7 @@ as description in the help :
289289
290290```typescript
291291#!/usr/bin/env -S deno run -A
292- import { cliteRun } from "jsr:@jersou/clite@0.7.5 ";
292+ import { cliteRun } from "jsr:@jersou/clite@0.7.6 ";
293293
294294class Tool {
295295 _help = "This tool is a little example of CliteParser"; // optional description
@@ -608,7 +608,7 @@ the command execution. Else, the help is print only for errors that have
608608It' s useful if a required option is missing, for example.
609609
610610` ` ` typescript
611- import { cliteRun } from " jsr:@jersou/clite@0.7.5 " ;
611+ import { cliteRun } from " jsr:@jersou/clite@0.7.6 " ;
612612export class Tool {
613613 throw = " true" ;
614614 main () {
@@ -625,7 +625,7 @@ To print help on specific error only, without `printHelpOnError=true`, use
625625` { cause: { clite: true } }` :
626626
627627` ` ` typescript
628- import { cliteRun } from " jsr:@jersou/clite@0.7.5 " ;
628+ import { cliteRun } from " jsr:@jersou/clite@0.7.6 " ;
629629export class Tool {
630630 noThrow = false ;
631631
@@ -727,7 +727,7 @@ $ ./Tool.ts -- main 123 true foo
727727A plain JS Object can be used :
728728
729729```typescript
730- import { cliteRun } from "jsr:@jersou/clite@0.7.5 ";
730+ import { cliteRun } from "jsr:@jersou/clite@0.7.6 ";
731731
732732cliteRun({
733733 retry: 2,
@@ -827,7 +827,7 @@ With [esm.sh](https://code.esm.sh/),
827827[jsfiddle.net](https://jsfiddle.net/)) :
828828
829829```javascript
830- import { cliteParse } from "https://esm.sh/jsr/@jersou/clite@0.7.5 ";
830+ import { cliteParse } from "https://esm.sh/jsr/@jersou/clite@0.7.6 ";
831831
832832class Tool {
833833 opt = 123;
0 commit comments