Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-23 | feat(fmt): stabilize CSS, HTML and YAML formatters (#25753) | Bartek Iwańczuk | |
This commits stabilizes CSS, HTML and YAML formatters in `deno fmt`. It is no longer required to use either of these flags: - `--unstable-css` - `--unstable-html` - `--unstable-yaml` Or these `unstable` options in the config file: - `fmt-css` - `fmt-html` - `html-yaml` | |||
2024-08-09 | feat(fmt): support CSS, SCSS, Sass and Less (#24870) | Pig Fang | |
This PR integrates [Malva](https://github.com/g-plane/malva) into `deno fmt`, which introduces the ability to format CSS, SCSS, Sass and Less files. On Linux x64 6.10, this PR increases about 800KiB: ``` ❯ wc -c target/release/deno 125168728 target/release/deno ❯ wc -c target/release/deno 124349456 target/release/deno ``` |