Andrew Kaiser

Results 71 issues of Andrew Kaiser

Is it possible to combine `buildDecoder` with existing types? `io-ts` adds a lot of value outside of simple validation. It can also transform input. Whether thats casting one type to...

this example file fails to parse when I use the async await syntax ```javascript // src/testfile.js const { add } = require('../') const timeout = n => new Promise(resolve, setTimeout(resolve,...

we should have params and results for basic types, rather than only using defined models. This is necessary for example with: ```ts const stmt = this.prepare`SELECT ${Book.params['*']} FROM book LIMIT...

- [ ] initialization migrations should warn when the versions are not all in sync - [ ] versions without any matching upgrades should error - [ ] multiple migrations...

we want fields to be able to change their names (similar to SQL `AS` syntax). E.g. ```ts const query = this.prepare`SELECT ${Tag.params.name}, ${TagGroup.params.name.as('group')} FROM tag INNER JOIN tag_group ON tag_group_id...

JSR has support for including arbitrary files in a published package https://jsr.io/docs/publishing-packages#filtering-files. That means you could avoid the fetch step during startup and remove two permissions needed during first launch...

I am looking to use this existing crate in deno https://crates.io/crates/gstreamer. What is the recommended way to set up deno ffi bindings in a crate that you do not own?...

**Describe the bug** **Steps to Reproduce** ```ts import * as path from 'jsr:@std/[email protected]' let globpath = 'D:\\a\\forager\\test\\resources\\*.jpg' path.isGlob(globpath) // false path.globToRegExp(globpath) // /^D:aforagertestresources\*\.jpg\/*$/ ``` **Expected behavior** I would expect to...

bug
needs investigation
path

a sample script like this: ```ts import * as cliffy from 'jsr:@cliffy/[email protected]' const cli = new cliffy.Command() .name('test') .option('--files ', 'A list of files to watch') .option('--foobar', 'A foobar') .action(opts...

The following snippet illustrates what I am referring to: ```ts const buffer = new Uint8Array(1024) const promise = Deno.stdin.read(buffer) setTimeout(() => { Deno.stdin.close() }) await promise ``` this snippet will...

bug
help wanted