autoprefixer-rails 10.4.16.0 → 10.4.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c98bfac03efd935510bb9b69e3d6e5e086b22aaf70c5b8efdffbdaf2fc4cf39a
4
- data.tar.gz: 30d7bde4a5a53a6b248dc17155eaf32f48aa7cfdbb64e672565e9ae234627f0f
3
+ metadata.gz: 8501ee145e38bd8ea67c4da68494104d6f830b7403293caa8bfa222be119bf6c
4
+ data.tar.gz: b32aeba0a50d727b3fd92f9db4b19062c1e03fd447a89d9a4d7466d2df3e05db
5
5
  SHA512:
6
- metadata.gz: d6614e7a0fc0c90b55e1f84025d5e42d1ad883493289f2daeae92fdc7aefb1aad0b5e24349f51f00eadb9c9e0967cb4e7a40cdf0404731e72f4628485e4eaa8a
7
- data.tar.gz: 4ad070bd3187eb91d701dc538cfaf9e83a801819922ed004e7aad101cbfe087f9c75315282c48efa3c82cbff1218ee6a5fd7a5cbcf2d207003392b8589c19379
6
+ metadata.gz: d8a1cf8560f3c79b084cd8ce1daffff3b9b536a62506d0d0043d41e344f2835666dba14d1d9f4786b81dbe2295f54ee5b4a19fa989c70887fc4144728f3063e9
7
+ data.tar.gz: dfdcd598b6b2c8e6fa567ab11681c28fd12e76c9b0a95ee8a976cef2f45851645643954cb1197d5ef30b166c97745a89f465233b49ba993bb22b205d97344670
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # Change Log
2
+ ## 10.4.19.0
3
+ * Removed `end value has mixed support, consider using flex-end` warning
4
+ since `end`/`start` now have good support.
5
+ * Fixed removing `-webkit-box-orient` on `-webkit-line-clamp` (@Goodwine).
6
+ * Fixed `user-select: contain` prefixes.
2
7
 
3
8
  ## 10.4.16.0
4
9
  * Improved performance (by Romain Menke).
data/README.md CHANGED
@@ -202,7 +202,7 @@ Autoprefixer will generate a source map if you set `map` option to `true` in
202
202
  `process` method.
203
203
 
204
204
  You must set input and output CSS files paths (by `from` and `to` options)
205
- to generate correct map.
205
+ to generate a correct map.
206
206
 
207
207
  ```ruby
208
208
  result = AutoprefixerRails.process(css,
@@ -212,11 +212,12 @@ result = AutoprefixerRails.process(css,
212
212
  ```
213
213
 
214
214
  Autoprefixer can also modify previous source map (for example, from Sass
215
- compilation). Just set original source map content (as string) to `map` option:
215
+ compilation). Just set original source map content (as string) as `prev`
216
+ in the `map` option.
216
217
 
217
218
  ```ruby
218
219
  result = AutoprefixerRails.process(css, {
219
- map: File.read('main.sass.css.map'),
220
+ map: { prev: File.read('main.sass.css.map') },
220
221
  from: 'main.sass.css',
221
222
  to: 'main.min.css')
222
223
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutoprefixerRails # :nodoc:
4
- VERSION = "10.4.16.0" unless defined? AutoprefixerRails::VERSION
4
+ VERSION = "10.4.19.0" unless defined? AutoprefixerRails::VERSION
5
5
  end