Gabe

Results 24 comments of Gabe

For SystemJS in this case, it breaks dependency loading since the `System.register` call is duplicated.

Replacing top level `this` exports with the `exports` keyword worked for me. https://github.com/tbranyen/babel-plugin-transform-commonjs/pull/16/files#diff-13b5b151431c7e7a17f273559ed212d5R316 Although this implementation may not cover all use cases and doesn't handle early `return`s

Could you use `asyncBootstrap()` from `react-async-bootstrapper` https://github.com/ctrlplusb/react-async-bootstrapper#naive-example ? Shouldn't this only be called once?

Also similar: https://github.com/npm/hosted-git-info/issues/39

Any update on this? Would love to use `"$schema": "http://json-schema.org/draft/2019-09/schema#"` from the JSON Schema docs.

Would be useful as well for infinite scroll pagination.

Looks like loading into a docker image locally is not available but could still be pushed. https://github.com/docker/buildx/issues/59

A workaround I've found is dumping the `Dockerfile` and running it manually. ```sh nixpacks build . -o . && docker buildx build --platform linux/amd64,linux/arm64 -f ./.nixpacks/Dockerfile . ```

@zuchka Hm if `--platform` is intended to be available on Mac and Windows, nixpacks could call `buildx` under the hood instead of `build`. What do you think? The workaround isn't...