Skip to content

Releases: g-plane/malva

v0.3.1

10 May 00:58
v0.3.1
e1260c7
Compare
Choose a tag to compare

Fixes

  • Fixed leading combinator in nested qualified rule.

v0.3.0

11 Apr 00:03
v0.3.0
6f9aa60
Compare
Choose a tag to compare

Features

  • Optimized formatting grid and grid-template-* properties.

v0.2.0

24 Mar 15:10
v0.2.0
4afd4e4
Compare
Choose a tag to compare

Features

  • Added declarationOrder option for sorting declarations (a.k.a. properties) in qualified rule. For example, given with the following input:
div {
  height: 0;
  width: 0;
  display: flex;
}

It can format into:

div {
  display: flex;
  width: 0;
  height: 0;
}

For detail, please refer to documentation.

  • Added singleLineBlockThreshold option. This option can let you put a block into a single line if possible. This is especially useful for increasing readability when writing atomic CSS. For example:
.border-0 { border-width: 0px; }
.border-1 { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-3 { border-width: 3px; }
.border-4 { border-width: 4px; }
.border-5 { border-width: 5px; }

For detail, please refer to documentation.

v0.1.5

18 Feb 07:57
v0.1.5
152098d
Compare
Choose a tag to compare

This release didn't change anything for end users.

v0.1.4

05 Dec 09:06
v0.1.4
7f97610
Compare
Choose a tag to compare
v0.1.4

v0.1.3

05 Dec 09:01
v0.1.3
5452626
Compare
Choose a tag to compare
v0.1.3

v0.1.2

01 Nov 10:20
v0.1.2
61bf170
Compare
Choose a tag to compare

Fixes

  • Fixed config key operatorLinebreak in dprint config.

v0.1.1

21 Oct 07:03
v0.1.1
2048d41
Compare
Choose a tag to compare

Fixes

  • Fixed dprint plugin config.
  • Fixed formatting Sass arbitrary arguments.

v0.1.0

11 Oct 03:00
v0.1.0
daf6269
Compare
Choose a tag to compare

Initial release of Malva.

Thanks @magic-akari @NWYLZW @yfzhe (in alphabetical order) for providing early feedback!