Jake Gordon

Results 16 comments of Jake Gordon

This works for me in Bun `1.0.2`: ``` $ bun install @serialport/bindings-cpp ``` ```js import { autoDetect } from "@serialport/bindings-cpp" const Binding = autoDetect() console.log(await Binding.list()) // see a list...

it seems to allow the entrypoint if I simply set the build step to a no-op, eg `echo 1`

... however, this creates a `.github/workflows/deploy.yml` which is totally unnecessary if all I want to do is host a static website which doesn't include a build step. Is there no...

Thanks @mxdvl But if I have a website deployed with Deno Deploy (which I do) , that uses a custom `server.js` file as an entrypoint, all files in the repo...

Just to be really clear: I'm talking about a simple website which is just eg HTML files stored in a GitHub repo, where there no building static pages via build...

It's annoying to have to add one, but my solution for now is to add a `server.js` and make that the entrypoint: ```js import { serveDir } from 'jsr:@std/http/file-server' Deno.serve({},...