Skip to content

Releases: romainmenke/postcss-split-by-media

v0.2.0

Choose a tag to compare

@romainmenke romainmenke released this 25 Jul 08:46
344cf36

Manifest is now a sorted array (mobile first).

- Record<string,{ base: string, media: string }>
+ Array<{ base: string, media: string }>
- {
-     "all" : {
-         "base": "breakpoint.result.css",
-         "media": ""
-     },
-     "(min-width: 240px)": {
-         "base": "breakpoint.result.at-media-min-width-240px.css",
-         "media": "(min-width: 240px)"
-     }
- }
+ [
+     {
+         "base": "breakpoint.result.css",
+         "media": ""
+     },
+     {
+         "base": "breakpoint.result.at-media-min-width-240px.css",
+         "media": "(min-width: 240px)"
+     }
+ ]

v0.1.2

Choose a tag to compare

@romainmenke romainmenke released this 11 Jul 17:32
68ec36b
let's be strict about the node requirements

v0.1.1

Choose a tag to compare

@romainmenke romainmenke released this 11 Jul 17:31
bf76b5f
smaller release

v0.1.0

Choose a tag to compare

@romainmenke romainmenke released this 11 Jul 17:28
82c38ee
initial