JC

Results 19 issues of JC

I have something like this: ```javascript const MyComponent = ({ isShown }) => ( ); ``` The goal here is to make `MyComponent` show and hide itself according to the...

I had an image which was built before Yarn was added to this project. I installed Yarn like this: ```dockerfile FROM node:boron # Update RUN apt-get update -y # Install...

yarn

ESLint [documentation on `camelcase`](https://eslint.org/docs/rules/camelcase) states: > `"ignoreImports": true` does not check ES2015 imports (but still checks any use of the imports later in the code except function arguments) I think...

This PR adds support for attaching Attributes to fields of enums and structs. The primary motivation was to remove this hack introduced in https://github.com/FuelLabs/sway/pull/2516: https://github.com/FuelLabs/sway/blob/afb59ca69615e9a1e65ea54a4ae3c6f3e357ba64/sway-parse/src/item/mod.rs#L78-L96 The second commit is for...

language feature
compiler: parser

Hey, thanks for the great library! I have been experimenting with some models from Sketchfab with the sample macOS app and I've found a few models that have problems. The...

Example file: ``` javascript //= require handler=json src/json/myJSON.json ``` Example build process: ``` javascript gulp.src([ 'src/js/file.src.js', ]) .pipe(include({ typeHandlers: { json: function (fileContent) { return 'list.push(JSON.parse("'+escapeJSON(fileContent)+'"));'; } } })) .pipe(rename('file.js'))...

enhancement

This PR basically tries to do two things: - Add `Account` type - Change fields that represent an Account (like `Block.producer`) from `HexString256` to `Account` --- The Account type can...

enhancement

We should consider what our [CAIP](https://github.com/ChainAgnostic/CAIPs) identifiers will be. The first step would be deciding on a [CAIP-2](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md) which consists of a `namespace` (type) and a `reference` (id). Notes: -...

lib: std
language feature
compiler: frontend

I've created a reference implementation for this. Code is linted with ESLint (w/ Airbnb rules), compiled with Babel (w/ "es2015" preset) and tested with Jest. (Tests are a bit weak,...