Clement Hoang
Clement Hoang
I made a ECMAScript generator transform Babel plugin: https://github.com/clemmy/babel-plugin-transform-generator-expression. Since it requires a forked parser to dabble with, I made a CodePen where you can easily try out the syntax:...
Changed script source to a relative path.
Fragment syntax has been added to JSX which looks something like ```jsx I'm a fragment! ``` The spec PR is here: https://github.com/facebook/jsx/pull/93.
After running `brew install libtool autoconf automake` and running `./autogen.sh`, I ran into the following error: ``` ./configure: line 16763: syntax error near unexpected token `CAIROMM,cairomm-1.0,cairomm=yes,cairomm=no' ./configure: line 16763: `PKG_CHECK_MODULES(CAIROMM,cairomm-1.0,cairomm=yes,cairomm=no)'...
Steps the script will need to do: 1) Run a project build 2) Run a storybook build 3) Update the tag 4) Publish to NPM
## RFC: React Expressions with Explicit Generator Expression Semantics For more background on this proposal, please refer to https://github.com/facebook/jsx/pull/98. In that thread, there was a lot of backlash for the...
I have a `.gql` file that doesn't include any fragments or queries, but instead has a list of imports. For example, `a.gql`: ``` #import 'third-party/b.gql' #import 'third-party/c.gql' #import 'third-party/d.gql' ```...
The completion value of class and function declarations are `undefined`. ```js eval('class x {}') // undefined eval('(class x {})') // class x{} eval('function x() {}') // undefined eval('(function x(){})') //...