Federico Biccheddu

Results 26 comments of Federico Biccheddu

I have the same issue, even with `{base: 'source'}`. This is my task: ```js gulp.task('sass', function () { return gulp.src('scss/*.{sass,scss}', {cwd: './src', base: './src'}) .pipe(sass({ includePaths: [ './bower_components' ], precision:...

If you plan to use it only locally on your Mac, you can add this on top of your `Dockerfile`: ```dockerfile RUN set -eux; \ wget --quiet -O /usr/local/bin/go-replace https://github.com/webdevops/goreplace/releases/download/1.1.2/gr-arm64-linux;...

Added [Introductions to object types](https://gqtx.vercel.app/type/introduction) and `objectType` documentation. Feedback are much appreciated (mostly my english :laughing:).

IMO examples are way to verbose. Docusaurus does not support folding sections for now ([see docusaurus/2215](https://github.com/facebook/docusaurus/issues/2215)) to fold repetitive code but leaving a way to copy the example code. I'm...

For sure. I already done the update, but I don't know how to test this particular refactoring. Any hint or suggestion?

It is a real-world issue (the code in the first comment is actually used in our repo) but we don't test those types or we have to support old installation...

> Just fixed it be updating gosu and go-replace This means we can remove the previous code from our `Dockerfile`?

Same here trying to using `Decoder` for validating user's file upload where I need to validate against `FileList` and then `File`. `File` could be another decoder where properties like `size`,...

If possible, I would completely remove the chance or need to throw something for control flow. There is a lot of literature that explains why exceptions are not ideal for...

> > exceptions are not ideal for control flow > > @FedericoBiccheddu As I understand it the anti-pattern is to abuse `throw` as a `goto` to jump around rather than...