Damien

Results 113 comments of Damien

Thanks, that already helps! armed with the PRMs and reading read_xed_db.py should go a long way. In case that helps, the view of someone looking at the project for the...

I originally used the docker image to generate the linux prebuilt binaries as a way to have reproducible builds that don't depend on the developer environment. That said we could...

Yes! That's precisely what I had in mind :)

Yes, something like this indeed :) we can't mandate the presence of a `package.json` file though.

I don't know if we'll always use `npm` (and thus `package.json`) to handle our vendoring in the future. For instance [`deno`](https://github.com/denoland/deno) (from the very same Ryan Dahl!) has switched away...

We now have the stdlib described in ts and publish typings in `@jkcfg/std`

That's something I'd really like to see soon as well :) My current goal is to finish the plugin system so we can do interesting things such as rendering a...

prettier offers a compiled `standalone.js` package (https://prettier.io/docs/en/browser.html): - It can run without node.js - It works with es6 modules - API: https://prettier.io/docs/en/api.html It should be somewhat straight forward to write...

Hi! The input parameters from the command line are merged from left to right so you can do: ``` jk generate -f defaults.yaml -f regions/us-west-2.yaml ... ``` and the values...