Skip to content

Releases: smashercosmo/postcss-responsive-hints

v1.0.0

03 Dec 17:06
Compare
Choose a tag to compare

1.0.0 (2019-12-03)

Features

BREAKING CHANGES

  • postcss is now peerDependecy, minimum required node version is 10

v0.2.1

06 Oct 10:44
Compare
Choose a tag to compare
  • Fixed: incorrect check for responsiveValues length

v0.2.0

05 Oct 23:04
Compare
Choose a tag to compare

New features

Comment syntax is now opt-in

By default you'll be writing responsive hints, using no-comment
syntax. Like this:

.text {
  padding: 10px | 20px | x | 30px;
}

If you don't want to use non-standard syntax you need to set 'comments'
option to 'true'. After that you can write you hints like this:

.text {
  padding: 10px /* | 20px | x | 30px | */;
}

Initial Release

05 Oct 23:09
Compare
Choose a tag to compare
v0.1.0

Initial commit