Jakub Sova

Results 7 issues of Jakub Sova

### Environment ------------------------------ - Operating System: Linux - Node Version: v20.9.0 - Nuxt Version: 3.9.3 - CLI Version: 3.10.0 - Nitro Version: 2.8.1 - Package Manager: [email protected] - Builder: -...

### Description It all consists of the ability to modify the suggestions of subcommands... like to suggest some of them only instead of every single one that is provided. ###...

enhancement

### ❓ Type of change - [x] 📖 Documentation (updates to the documentation or readme) - [ ] 🐞 Bug fix (a non-breaking change that fixes an issue) - [...

### Environment - Operating System: Linux - Node Version: v20.13.1 - Nuxt Version: 3.12.2 - CLI Version: 3.12.0 - Nitro Version: 2.9.6 - Package Manager: [email protected] - Builder: - -...

If you want to add a component, ... to the project, you will typically use the: `nuxi add component` Meanwhile, to add a module, you would use: `nuxi module add`...

enhancement
discussion

This PR removes trailing slashes from void elements (self-closing on HTML void elements), since no XHTML is being used. This also ensures that elements are consistent, as some had trailing...

The code for `min_price` can be improved by removing redundant comparison. ``` def min_price(a, b): mn = price_at(a) for i in range(a, b + 1): mn = min(mn, price_at(i)) return...