Tanguy Krotoff

Results 71 comments of Tanguy Krotoff

@rasgo-cc > because it allows me to abstract the icons components No problem to do that with react-bootstrap-icons approach, this works perfectly: ```TypeScript // File Icon.tsx import React from 'react';...

btw in a similar way, here a trick when testing with Jest: ```JSX // File src/__mocks__/react-bootstrap-icons.tsx import React from 'react'; import * as icons from 'react-bootstrap-icons'; function mockIcon({ iconName }:...

Same for Martinique (MQ) http://en.wikipedia.org/wiki/Martinique Guadeloupe (GP) http://fr.wikipedia.org/wiki/Guadeloupe

Thanks for the precisions and sorry for the duplicated report. Any ETA for the new AWS authentication mechanism implementation?

@TueCN `jsFilter.restore()` should be written `jsFilter.restore` => see [gulp-filter documentation](https://github.com/sindresorhus/gulp-filter/blob/master/readme.md#restoring-filtered-files) You also need to pass option `restore: true`. Example: ``` TypeScript import * as gulp from 'gulp'; import * as...

I've the same "JavaScript heap out of memory" issue with a JavaScript/Jest project (https://github.com/tkrotoff/fetch): ``` Run codecov/codecov-action@v2 with: files: coverage/clover.xml,examples/node/coverage/clover.xml,examples/web/coverage/clover.xml fail_ci_if_error: true verbose: true ==> linux OS detected https://uploader.codecov.io/latest/linux/codecov.SHA256SUM ==>...

btw I don't see the need for codecov-action: ``` - name: Upload coverage to Codecov run: | curl --remote-name https://uploader.codecov.io/v0.1.14/linux/codecov chmod +x codecov ./codecov --file coverage/coverage-final.json --file examples/node/coverage/coverage-final.json --file examples/web/coverage/coverage-final.json...