Parse error: SyntaxError: This experimental syntax requires enabling the parser plugin: 'optionalChaining' (68:33) in "components/CreateWeb.js"
Not sure why it happens, but babel-eslint has the same problem https://github.com/babel/babel-eslint/issues/595
This is fixed on master I guess
fixed here https://github.com/facebook/relay/commit/4691145e7c8d2babcedb1b1eff02819321a32ff8
by @dwwoelfel
@sibelius Is is possible to use Relay from master somehow easily?
yarn add relay@facebook/relay#master
version can be used as github/repo#commitsh-value
the commit it was downloaded is added to yarn.lock, so running yarn upgrade updates to latest revision from master.
@JCMais Sorry for of topic, but I wonder how it works? Is it yarn magic?
npm in reality, it can resolve to any package on github. But this is probably not going to work with relay, mainly because it's a monorepo, and does not store transpiled sources on GitHub
Most helpful comment
yarn add relay@facebook/relay#masterversion can be used as
github/repo#commitsh-valuethe commit it was downloaded is added to yarn.lock, so running
yarn upgradeupdates to latest revision from master.