David Sherret
David Sherret
I'm not sure anything needs to change here in Deno. Instead of a wrapper function, a wrapper could be made around the context object so it fails fast. ```ts Deno.test("parent",...
Essentially in the wrapper object you don't throw, but you do: ```ts // very roughly and you'd want an actual implementation to be more complex than this function createFailFastWrapper(originalCtx) {...
Yeah, that seems like surprising behaviour to me given how `npm run` works. I often use `deno task` on its own to find out what the tasks are.
I don't think it's that much of an improvement in DX because very often repos have different commands for development, production, or something else.... so I'd still need to go...
Try providing an explicit url: `new URL("file:///path/to/root.ts")` The error will be surfaced better once #34 lands.
I've run into needing this for `deno vendor` again while working on the import map only solution. It also needs to know the text for the `// @deno-types="..."` and `///...
Sure. I updated the title.
Nope. ``` $ curl -fsSL https://deno.land/install.sh | sh ######################################################################## 100.0% Archive: /home/david/.deno/bin/deno.zip inflating: /home/david/.deno/bin/deno Deno was installed successfully to /home/david/.deno/bin/deno Run 'deno --help' to get started ``` @ricky900 what does...
> Hitting it when passing args to third party functions aligns with the intent fwiw. It's supposed to make you name the argument on the calling side. Oh, I didn't...
@kitsonk oh yeah didn't think about that. That would definitely be desired. I guess it should probably have the ability to return multiple possible solutions as a fix and they...