Geert-Jan Zwiers

Results 19 issues of Geert-Jan Zwiers

Updates `deno check` to throw an error when both `--remote` and `--no-remote` are used.

```js // main.mjs import Fastify from "fastify"; const fastify = Fastify({ logger: true, }); // deno-lint-ignore require-await fastify.get("/", async (_req, _res) => { return { hello: "world" }; }); const...

bug
node

Steps to reproduce: - `mkdir compat_fsx` & `cd compat_fsx` - `npm init -y` - `npm i fs-extra` - add `app.js`: ```js const fsx = require('fs-extra'); fsx.copy('./foo.js', './bar.js') .then(() => console.log('success!'))...

bug
node

## Describe the bug I was trying to use this module in an AWS Lambda handler running Deno. Importing the AWS DynamoDB Client using `import * as dynamodb from "https://deno.land/x/aws_sdk/client-dynamodb/mod.ts";`...

bug

This PR improves the consistency of the writing format in the manual chapters, pages and table of contents. - [title case](https://en.wikipedia.org/wiki/Title_case) is now used consistenly for chapter headings, the first...

With the type-checking changes in Deno 1.23 there is no longer a difference (as far as I know) between `deno run ` and `deno run --no-check `. It would be...

stale

The code example at https://deno.land/[email protected]/webassembly/using_streaming_wasm#using-the-streaming-webassembly-apis throws an error in Deno versions 1.17+ due to a fetch/TLS bug described in https://github.com/denoland/deno/issues/13058. ``` error: Uncaught (in promise) Error: request or response body...

First of all thank you for making this module, it is very nice! I noticed that on windows there is an error when trying to load the AWS credentials. My...

The CLI docs for `deno test` show three flags still listed as unstable: `--coverage`, `--doc`, and `--shuffle`. All of these have been around for quite some time and they seem...

This PR removes the `UNSTABLE` mentions from the CLI docs for `deno test --coverage/doc/shuffle`. Fixes https://github.com/denoland/deno/issues/17659.