Results 13 comments of Jonathan R Wickens

The list of allowed characters is specified here: https://www.w3.org/TR/2008/REC-xml-20081126/#charsets The specific character @Ntobon shows in his example, the replacement char U+FFFD, is allowed. I've tested this with `xlsx-populate` and my...

Personally, I would err on the side of patience and seeing if @dtjohnson has time and energy later. Open source can be a thankless yet highly demanding task. Do share...

@nkbt how did you get yarn pack to work? for me it just packs the current package, no dependencies

Nice, that seems pretty neat. What I figured out yesterday was that i could use this package: https://www.npmjs.com/package/bundle-dependencies like: ``` lerna exec --since -- yarn bundle-dependencies update ``` And then...

Hi @sgendler-stem I ended up moving away from bundleDependencies and use `yarn pack` in each dir as suggested by @nkbt. First I go through each mono-repo package and for each...

Hi @killix here's the gist https://gist.github.com/jwickens/f7d91a4160c43d5115a0bff73fb220b2

Would be happy to help and submit a PR along the lines of @dbieber's last comment if a maintainer is open to it.

This would be a great feature. At the risk of being thumbs downed, maybe call it `useMutationWithState` to avoid a breaking change? I know its more typing and perhaps not...

👍 on this because I use graphql-tools and was getting a strange error until i did: ``` require('graphql') const { makeExecutableSchema } = require('graphql-tools') ```