Paul Tsnobiladzé

Results 24 issues of Paul Tsnobiladzé

Since BuckleScript is going to release a v8 and maybe Reason a v4, I think now could be a good time to fix name mangling issues once for all and...

Issue Type: Bug When I start a live-share from my Macbook Pro 13 2020 Intel, no audio options are shown. It used to work perfectly before. I even tried fully...

I added the reverse version of `map`, `forEach` and `keep`. I fixed some typos and examples of the docs. I also added a rescript implementation of `joinWith` (it's around 3...

```res // inside file `Styles.res` module Text = { let foo = "foo" } ``` produces the following JS: ```js var $$Text = { foo: "foo" }; exports.$$Text = $$Text;...

If I install my dependencies with: ```bash opam install . --deps-only --locked ``` it doesn't install the dev dependencies. Removing `--deps-only` fixes it. Same thing with: ```bash opam switch create...

KIND: BUG

Hi, I'd be really interested in seeing a working example of your lib in a website, is the source of https://wasm-git.petersalomonsen.com/ available for example? I couldn't make the example provided...

Right now, `~variables` expects any type: ```reason let useQuery: ( ~client: ApolloClient.t=?, ~variables: 'raw_t_variables=?, ~notifyOnNetworkStatusChange: bool=?, ~fetchPolicy: ApolloHooksTypes.fetchPolicy=?, ~errorPolicy: ApolloHooksTypes.errorPolicy=?, ~skip: bool=?, ~pollInterval: int=?, ~context: Context.t=?, graphqlDefinition('t, 'raw_t) ) =>...

A lot has been done already to support local reproducible environments with opam, local switch first, and then the use of `.opam.locked` along with the `--locked` option, but I think...

Hey, would you be open to use node-pg query config object for queries instead of statement and params? The API is clearer and tends to be more widely supported.

I just rebased on master @aspeddro work (#704, based on #420 work by @diogomqbm). todo: - [ ] make it work with JSX automatic (any idea why jsx-runtime is not...