Jesse Jackson

Results 57 issues of Jesse Jackson

Documentation and code in this repo use `deno run -A` (`--allow-all`). This: - disable's Deno's runtime security sandbox - is opaque and counter to a zero-trust model (upon which that...

I ran a subprocess using Deno from within a process that had already been granted a specific run permission for Deno (`--allow-run=deno`), and then tried to kill the child process....

bug
runtime

It seems like somewhere during the migration to [extensions](https://github.com/denoland/deno/tree/main/extensions), some of the APIs no longer appear in the docs. (e.g. `Deno.serveHttp`, `Deno.RequestEvent`, and other types from [lib.deno_net.unstable.d.ts](https://github.com/denoland/deno/blob/main/extensions/net/lib.deno_net.unstable.d.ts) are missing from...

bug

What's the roadmap for adding the other APIs which were [removed in Deno v`1.22.0`](https://deno.com/blog/v1.22#removal-of-unstable-denoemit-denoformatdiagnostics-and-denoapplysourcemap-apis)? - Programmatic type-checking - [`Deno.formatDiagnostics`](https://doc.deno.land/deno/[email protected]/~/Deno.formatDiagnostics) - [`Deno.applySourceMap`](https://doc.deno.land/deno/[email protected]/~/Deno.applySourceMap) It feels like an oversight that all of it...

enhancement

I'll provide an example repo, attached as a zip file and inline files here for examination: [bundle-example.zip](https://github.com/denoland/deno/files/6811130/bundle-example.zip) Files `example-1.ts`: ```ts import { assert } from "https://deno.land/[email protected]/testing/asserts.ts"; assert(true); ``` `example-2-asserts.ts`: ```ts...

#419 was just fixed by #421, adding `AggregateError` to the globals list: https://github.com/denoland/deno_lint/blob/master/src/globals.rs However, I noticed that there are some other inconsistencies between that list and what is produced by...

build
globals

I often author TypeScript modules (for use in Deno) which don't use the Deno namespace or any of the Deno NS types (shared utilities which would be useful in non-Deno...

**Bug:** Currently, type aliases with optional members don't generate question marks for the member keys. **Enhancement:** Generate descriptions from JSDoc comments for type alias members, in the same way they're...

Example: Source: ```ts /** * Log your data */ export const log = (data: any): void => console.log(data); ``` Generated: It also doesn't seem to recognize types on the anonymous...

Perhaps use [ffmpeg.js](https://github.com/Kagami/ffmpeg.js)? Or create own version.