sass-mq 7.0.0-beta.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,13 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
  <!-- ## Unreleased -->
9
9
 
10
- ## v7.0.0 - 2024-10-24
10
+ ## v7.0.0 - 2025-06-16
11
11
 
12
12
  This is a major version bump that contains no breaking changes but may require a newer version of Sass. It ensures compatibility with the latest version of dart-sass and removes support for `@import`, as [`@import` is officially deprecated as of sass-dart 1.80.0](https://sass-lang.com/blog/import-is-deprecated/).
13
13
 
14
14
  ### Added
15
15
 
16
- - Support for dart-sass >= 1.80.0 (without deprecation warnings)
16
+ - Added support for dart-sass >= 1.80.0 (without deprecation warnings)
17
17
 
18
18
  ### Changed
19
19
 
@@ -24,6 +24,7 @@ This is a major version bump that contains no breaking changes but may require a
24
24
 
25
25
  - Upgraded Jest and Sass True dependencies to unlock testing with the latest versions of `sass-dart`
26
26
  - Fixed a test where a space was missing between `and` and `(` in the generated CSS (caused by the latest version of Sass)
27
+ - Migrated from Travis CI to GitHub Actions for testing
27
28
 
28
29
  ## v6.0.0 - 2022-01-10
29
30
 
package/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
  <img width="500" height="500" src="https://avatars3.githubusercontent.com/u/9341289?v=3&s=500" alt="Awesome">
3
3
  </div>
4
4
 
5
- # Media Queries with superpowers [![Build Status](https://api.travis-ci.org/sass-mq/sass-mq.svg?branch=main)](https://travis-ci.org/sass-mq/sass-mq)
5
+ # Media Queries with superpowers
6
6
 
7
7
  `mq()` is a [Sass](http://sass-lang.com/ 'Sass - Syntactically Awesome
8
8
  Stylesheets') mixin that helps you compose media queries in an elegant way.
9
9
 
10
- - compiles keywords and `px`/`em` values to `em`-based queries ([a good thing](http://css-tricks.com/zooming-squishes))
11
- - For version 6 and up we removed fallbacks for older browsers (see [Mobile-first Responsive Web Design and IE8](http://www.theguardian.com/info/developer-blog/2013/oct/14/mobile-first-responsive-ie8) on the Guardian's developer blog).
10
+ - Compiles keywords and `px`/`em` values to `em`-based queries ([a good thing](http://css-tricks.com/zooming-squishes))
11
+ - For version 6 and up we removed fallbacks for older browsers (see [Mobile-first Responsive Web Design and IE8](http://www.theguardian.com/info/developer-blog/2013/oct/14/mobile-first-responsive-ie8) on the Guardian's developer blog)
12
12
 
13
13
  Here is a very basic example:
14
14
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sass-mq",
3
3
  "description": "mq() is a Sass mixin that helps manipulating media queries in an elegant way.",
4
- "version": "7.0.0-beta.1",
4
+ "version": "7.0.0",
5
5
  "keywords": [
6
6
  "responsive",
7
7
  "sass",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
47
- "url": "https://github.com/sass-mq/sass-mq.git"
47
+ "url": "git+https://github.com/sass-mq/sass-mq.git"
48
48
  },
49
49
  "license": "MIT",
50
50
  "homepage": "https://sass-mq.github.io/sass-mq/",