Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 240 Bytes

11487.md

File metadata and controls

13 lines (10 loc) · 240 Bytes

Fix wildcard syntax in @forward (#11482) (#11487 by @niksy)

// Input
@forward "library" as btn-*;

// Prettier stable
@forward "library" as btn- *;

// Prettier main
@forward "library" as btn-*;