Brook Jordan
Brook Jordan
Let’s get this working without the extra dep!
The following: ```css .box { border-top-left-radius: 10px; border-top-right-radius: 20px; border-bottom-left-radius: 20px; border-bottom-right-radius: 40px; } ``` is currently minified to: ```css .box{border-top-left-radius:10px;border-top-right-radius:20px;border-bottom-left-radius:20px;border-bottom-right-radius:40px} ``` but could be “short-hand”ed: ```css .box {border-radius: 10px...
The following code: ```yaml components: schemas: Digit: type: string enum: - zero - one - two - three - four - five - six - seven - eight - nine...
For example, if we want a list of lat, lon coordinates, this: ```yaml type: array items: type: array minItems: 2 maxItems: 2 prefixItems: - number - number ``` should generate:...
Sometime we have data structures which can be inherited in every way except for whether or not parts of them are required. For example, if you POST a request then...
**Prettier 2.1.1** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEMCeAHOACACgJwgwGdsBeAHSm2wDJtgqabo4ltiZ8BLKAcwDcTbAF9h9AIIAbKQHl8AOVayAZgB5G1ZjADuEdpx78hWmjAAW+OGw5deg4SIB847NLmLl6zc2wqIAK74BnbGwjQq3ABuNob2JjTOAiAANCBEMNzQxMigAIb4hDq4BQg5KHlSOnloOWkARvh5YADWcDAAyhjN9shcAXBpcAC29XAAJuMTADJ5-AF5fHAAYhD4w3kwmfzIIHkBMBCpIOYww1IA6ubc8MTdYHAdZTfRN2i7YMR1ILzEcPgwAiLDbIFSVP5pABWxAAHgAhJqtdodPLDODTXhwUHgwYgaEwjr2KRwACKAQg8GxUghIG6+D++F29TyYykxwwRhgF244wsyAAHAAGNIciB-C5NDC7DlwBkxY4AR3J8AIRHKe2IAFooNYpuNjlYldwrEC+CCkGDqbi-sNuH18AM0sQiaTlViLTi0jAWdzeeZkAAmL1NbhSewAYQgw3NIFlAFZjgE-gAVFnlS00qIDACSUCmsA6YB4GBgEjzHXQxKpfxEIiAA) ```sh --parser babel ``` **Input:** ```jsx type Props = & { one: string; } & AllOrNoneOf & AllOrNoneOf; ``` **Output:** ```jsx type Props = { one:...
## Issue When setting `generateUnionEnums` to true, the mapping `Key` generics should be set explicitly as strings rather than using the enum mapping. Found on version `13.0.3` ### Setup That...
**mapbox-gl-js version**: 3.5.2 **browser**: Safari, Chrome, Firefox ### Steps to Trigger Behavior 1. attempt to use `map.getLayer(LAYER_ID).layout.get('icon-size').value.value` ### Link to Demonstration ### Expected Behavior The value of the layer property...
Now that we’ve got first-class types for MapBox GL.js, is it time we have the same for draw? I’m currently working on types here: https://github.com/brookjordan/mapbox-gl-draw/tree/chore/convert-to-typescript/bj I was wondering if this...
**Describe the bug** Defining `prefixItems` within an array with `items` set to `false` displays a message saying: `Schema not provided`. **Expected behavior** Defining `prefixItems` as an array with `items` set...