Stephan Schneider

Results 40 comments of Stephan Schneider

### Allowed ways to construct a `BareItem` per variant ```rust // BareItem::Decimal let value = BareItem::new_decimal_from_f64(13.37)?; let value: BareItem = 13.37.try_into()?; let decimal = rust_decimal::Decimal::from_f64(13.37).unwrap(); let value = BareItem::new_decimal(decimal); let...

Hej @pieh, sure thing, I'm eager to see v2 landing soon. I will definitely check out the discussion and contribute with my findings from building the PoC. At some point...

Hej @freiksenet, great to hear! I did proceed coding in the meantime and have a prototype where the third-party schema can basically only receives the `set FieldsOnNodeType` fields from plugins,...

I fear we would need to add another hook so that directive plugin authors could properly modify the types. Currently I only have one field hardcoded extended with remark, so...

Yep, currently the PoC is actually extending the types, so I'm more "annotating" what the field is, and based on that it generates new fields.

Approach: Each route (e.g. `users#edit`) isn't stored as a function, but as a Hash/Object. So if necessary a route can be defined such as: ``` js /* * app/assets/javascripts/controllers/users.js */...

This might confuse people, which usage scope this function have. `on`/`off` is kinda reserved for events only, but `users.edit.on` would have all the buildup code (e.g. showing/hiding something), while `off`...

How about providing a README section on how to build the code? Or even some `npm run build` script. Only drawback would be to include `babel`/`babel-cli` inside of the project,...

As this discussion came up at work today, here the sentence with which I argued it against my colleagues: > It's called `git-scm` - **source** control management. Your compiled/built code...

> I don't think we'd want to attempt to append any wrangler flags to these commands as there's a high likelihood we'd get it wrong or put the flag in...