martin

Results 69 comments of martin

I did create a `react-native-qrcode-styled.d.ts`: ```ts // The package ships with TypeScript declarations but doesn't properly declare them in package.json declare module 'react-native-qrcode-styled' { export * from 'react-native-qrcode-styled/lib/typescript/module/src/index'; export {default}...

@arcanis Is this a yarn bug or a misconfiguration of the `"os" : [ "!win32" ]` in the `package.json` of `nice-napi`? In the Docs, it shows that `os` can blocked...

@alunyov @kassens Could be possible to have an option in the compiler for artifacts' file naming ? For example: ```javascript query MyComponentQuery { ...SomeFragment } ``` Generates: with option for...

It is a long time, 5 years already since @leebyron https://github.com/facebook/relay/issues/2093 @alunyov What could be possible here? (or what can not because some other contraints)

@captbaritone Why not use `to_pascal_case` in place of `to_camel_case` here? https://github.com/facebook/relay/blob/b90d6228e967b1354089378e2a4c37f36ce4f911/compiler/crates/relay-transforms/src/validations/validate_module_names/extract_module_name.rs#L17 Given the file `foo-bar.js`: ```js import {graphql, useFragment} from 'react-relay'; export default function FooBar() { useFragment( graphql` fragment FooBar...

I use a plugin forked from original Trivago and we setup a simple grouping for: company, team, root folder, that goes below the node/external packages. ``` plugins: [require.resolve('@ianvs/prettier-plugin-sort-imports')], importOrder: [...

> The element check for if it should scroll (specifically topOfElementInViewport > > https://github.com/vercel/next.js/blob/87fb29ee7143c1e9a4c129585f9546c3f5e0b2b8/packages/next/src/client/components/layout-router.tsx#L151 > > ) returns `true` even though it's not fully in the viewport because of the...

> It seems like the form intent is not captured properly and so it is treated as a form submission in the test environment. The extra 2 calls you see...

@edmundhung might be this problem related to the usage of MutationObserver which callback is executed async?