pkgxdev / pkgx

the last thing you’ll install
https://pkgx.sh
Apache License 2.0
8.81k stars 1.36k forks source link

feat: Prepare for Deno 2.0 migrations (use no deprecated APIs) #974

Closed rustdevbtw closed 4 months ago

rustdevbtw commented 4 months ago

Prepares for migration to Deno 2.0

Changes

Deno.isatty(*.rid) -> Deno.*.isTerminal() clicolor(*.rid) -> clicolor(*)

I also removed the isatty test and removed isatty fom $_internals. I also replaced --unstable flag with --unstable-ffi and --unstable-fs.

rustdevbtw commented 4 months ago

It'll require us to use latest Deno (>=1.40). I'm not sure whether this migration is worth changing minimum required Deno version. @mxcl what do you think?

rustdevbtw commented 4 months ago

It's a duplicate of #953 ig