autoprefixer-rails 10.3.3.0 → 10.4.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/README.md +2 -2
- data/lib/autoprefixer-rails/processor.rb +2 -2
- data/lib/autoprefixer-rails/railtie.rb +4 -0
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +4692 -4790
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c98bfac03efd935510bb9b69e3d6e5e086b22aaf70c5b8efdffbdaf2fc4cf39a
|
4
|
+
data.tar.gz: 30d7bde4a5a53a6b248dc17155eaf32f48aa7cfdbb64e672565e9ae234627f0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6614e7a0fc0c90b55e1f84025d5e42d1ad883493289f2daeae92fdc7aefb1aad0b5e24349f51f00eadb9c9e0967cb4e7a40cdf0404731e72f4628485e4eaa8a
|
7
|
+
data.tar.gz: 4ad070bd3187eb91d701dc538cfaf9e83a801819922ed004e7aad101cbfe087f9c75315282c48efa3c82cbff1218ee6a5fd7a5cbcf2d207003392b8589c19379
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 10.4.16.0
|
4
|
+
* Improved performance (by Romain Menke).
|
5
|
+
|
6
|
+
## 10.4.15.0
|
7
|
+
* Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
|
8
|
+
* Fixed `::backdrop` prefixes (by 一丝).
|
9
|
+
|
10
|
+
## 10.4.13.0
|
11
|
+
* Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.
|
12
|
+
* Fixed support of unit-less zero angle in backgrounds (by 一丝).
|
13
|
+
* Fixed `text-decoration` prefixes by moving to MDN data (by Romain Menke).
|
14
|
+
* Fixed `unicode-bidi` prefixes by moving to MDN data.
|
15
|
+
* Fixed `css-unicode-bidi` issue from latest Can I Use.
|
16
|
+
* Do not print `color-adjust` warning if `print-color-adjust` also is in rule.
|
17
|
+
|
18
|
+
## 10.4.7.0
|
19
|
+
* Fixed `print-color-adjust` support in Firefox.
|
20
|
+
* Fixed `print-color-adjust` support.
|
21
|
+
* Fixed `NaN` in grid (by @SukkaW).
|
22
|
+
|
23
|
+
## 10.4.2.0
|
24
|
+
* Fixed missed `-webkit-` prefix for `width: stretch`.
|
25
|
+
* Fixed `::file-selector-button` data (by Luke Warlow).
|
26
|
+
* Ensure sprockets-rails is loaded before autoprefixer-rails (by Thomas Morgan)
|
27
|
+
|
28
|
+
## 10.4.0.0
|
29
|
+
* Added `:autofill` support (by Luke Warlow).
|
30
|
+
|
3
31
|
## 10.3.3.0
|
4
32
|
* Fixed `::file-selector-button` support (by Usman Yunusov).
|
5
33
|
* Fixed wrong `-moz-` prefix from `::file-selector-button` (by Usman Yunusov).
|
data/README.md
CHANGED
@@ -15,8 +15,8 @@ and Ruby on Rails integration with this JavaScript tool.
|
|
15
15
|
[Autoprefixer]: https://github.com/postcss/autoprefixer
|
16
16
|
[Can I Use]: http://caniuse.com/
|
17
17
|
[PostCSS]: https://postcss.org/
|
18
|
-
[ci-img]: https://
|
19
|
-
[ci]: https://
|
18
|
+
[ci-img]: https://github.com/ai/autoprefixer-rails/actions/workflows/ci.yml/badge.svg
|
19
|
+
[ci]: https://github.com/ai/autoprefixer-rails/actions/workflows/ci.yml
|
20
20
|
|
21
21
|
## Differences
|
22
22
|
|
@@ -4,9 +4,9 @@ require "pathname"
|
|
4
4
|
require "execjs"
|
5
5
|
require "json"
|
6
6
|
|
7
|
-
IS_SECTION = /^\s*\[(.+)\]\s*$/.freeze
|
8
|
-
|
9
7
|
module AutoprefixerRails
|
8
|
+
IS_SECTION = /^\s*\[(.+)\]\s*$/.freeze
|
9
|
+
|
10
10
|
# Ruby to JS wrapper for Autoprefixer processor instance
|
11
11
|
class Processor
|
12
12
|
SUPPORTED_RUNTIMES = [ExecJS::Runtimes::Node, ExecJS::Runtimes::MiniRacer]
|