Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingZhang committed Sep 7, 2020
1 parent 6c281b2 commit a60c421
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
./test
./test
.vscode
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ deno run --unstable ./examples/width.unstable.ts
## Usage
* simple example
```ts
import ProgressBar from "https://deno.land/x/[email protected].2/mod.ts";
import ProgressBar from "https://deno.land/x/[email protected].3/mod.ts";

const title = 'downloading:';
const total = 100;
Expand All @@ -40,7 +40,7 @@ downloading();
```
* complex example
```ts
import ProgressBar from "https://deno.land/x/[email protected].2/mod.ts";
import ProgressBar from "https://deno.land/x/[email protected].3/mod.ts";

const total = 100;
const progress = new ProgressBar({
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
bgGreen,
bgWhite,
} from "https://deno.land/std@0.55.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.0/fmt/colors.ts";

const isTTY = Deno.isatty(Deno.stdout.rid);
const isWindow = Deno.build.os === "windows";
Expand Down

0 comments on commit a60c421

Please sign in to comment.