Yoshiya Hinosawa
Yoshiya Hinosawa
Or we can do `await file.readable.pipeTo(Deno.stdout.writable, { preventClose: true });` without std dependency
I was able to show permission consent screen (with the scope updated to `profile email`) like the below: But callback handler doesn't generate access token successfully. I currently have no...
```ts // server.ts import { createLinkedInOAuthConfig, getSessionId, handleCallback, signIn, signOut, } from "./mod.ts"; const oauthConfig = createLinkedInOAuthConfig({ redirectUri: "http://localhost:8000/oauth/callback", // scope: "r_liteprofile r_emailaddress", scope: "profile email", }); async function handler(request:...
Sorry for the late response, but it seems to be fixed in 0.5.12 already. Can you confirm it?
It is supposed to work on arm mac. https://github.com/kt3k/deno-bin/blob/26341fcbfdab0eaddcd364b80b969cf01c5d6dee/install.js#L12-L16 Can you execute that file (`/Users/***/node_modules/deno-bin/bin/deno`) directly?
Currently there is no support of mixed years in copyright headers. Is mixing years in copyright header common or good thing? Personally I often see people updating all years in...
If mixture of different years is allowed, do you have any idea of the design of the config file?
I'm now thinking about the config structure like the below for allowing multiple year patterns. ```json { "**/*.js": "// Copyright {YEAR} My Name. All rights reserved. MIT license.", "params": {...
The below should work: ```yaml run: npx @kt3k/license-checker ``` If you prefer Deno, then: ```yaml - uses: denoland/setup-deno@v1 with: deno-version: v1.x - run: deno run --allow-read https://deno.land/x/[email protected]/main.ts ```
Hi @yusukebe. Thanks for working on this! I also tried `@hono/do-not-use-this`. The hello world server started without issue on my end. example repo: https://github.com/kt3k/hono-jsr-test One thing I noticed is that...