Skip to content

v1.3.0

Compare
Choose a tag to compare
@fuxingZhang fuxingZhang released this 07 Nov 10:23
· 55 commits to master since this release

changes:

  1. fixed colored string length calculation bug

  2. Deno.consoleSize is now stable

Deno v1.27.0 : Stabilize Deno.consoleSize() API

The Deno.consoleSize API change

- Deno.consoleSize(Deno.stdout.rid).columns;
+ Deno.consoleSize().columns;

Now you can run a wider bar without unstable.

- deno run --unstable ./examples/width.unstable.ts
+ deno run ./examples/width.ts

So mod.unstable.ts and exmaples/width.unstable.ts was removed.

- mod.unstable.ts
- exmaples/width.unstable.ts