Guillaume Hain

Results 244 comments of Guillaume Hain

@kylethebaker I tried what you suggested as the following : ```javascript const { API_BASE_URL = '' } = require('react-native-dotenv') ``` but the Metro Bundler fails with the following : ```...

Switching to [`react-native-config` package](https://github.com/luggit/react-native-config).

I'm looking this one too! Is there any estimated time when this could be implemented? A roadmap? 😃

@jamesalucas can you please tell us more about the way you did it? I'm not sure to understand how you workarounded this.

Thank you @jamesalucas for your comment.

Thank you @mariusvniekerk for your snippet! Just a warning about the missing `END` of the `IF` block. I was able to use your way using `WITH DOCKER`: ``` # #...

I actually have a weird error with the `IF` block: ``` +cucumber | --> FROM earthly/dind:alpine +cucumber | [██████████] resolve docker.io/earthly/dind:alpine@sha256:03ca247da4f32bb2c14719d83edc5e4d1f013af5af07ab9b9b6e7e9307374c37 ... 100% internal | --> docker tar context +test...

I don't know the Earthly version you're using, but with 0.5.17 I can't get my files out of Earthly until the final exit code is 0. Maybe when using `WITH...

The last version of Earthly (v0.5.24) fixed the issue reported in [my comment](https://github.com/earthly/earthly/issues/988#issuecomment-872487332) but the artifacts aren't saved since the target fails as @mariusvniekerk. Until this proposal is implemented, I'll...

BTW the @jamesalucas' way works fine: I'm saving the exit code in a file, and then from the `.gitlab-ci.yml` file I'm doing: ```yaml script: - earthly --allow-privileged --build-arg COMPOSE_HTTP_TIMEOUT=$COMPOSE_HTTP_TIMEOUT --build-arg...