support-for 1.0.6 → 1.0.7
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.
- checksums.yaml +4 -4
- data/package.json +6 -5
- data/sass/_support-for.scss +8 -8
- data/support-for.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c39d0dfa5ed839c603add4d9e95c0450cc8d6096
|
|
4
|
+
data.tar.gz: a1309a9a853eeac894f4324b436c195eb593617f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c514b52c030bc50d0a52e36d932f09599a0d074d297bf9d7afe2d7795462e74296b9e2afff1d9caeb90cfdb95f9039555b6d53ee64265ea9fd5d3a95dd12da93
|
|
7
|
+
data.tar.gz: 81c8ffa33908e4369ff7db72a2d49254108afb2153ed3c8c83c5187d91db7417e52bbe8529fc3bab2cdb27c58ea79224e92eaf88085e6dc5a5c07985689ab93e
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "support-for",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Allows Sass authors to conditionally add support for specific browser versions.",
|
|
5
5
|
"homepage": "https://github.com/JohnAlbin/support-for",
|
|
6
6
|
"bugs": {
|
|
@@ -26,14 +26,15 @@
|
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"test": "mocha",
|
|
29
|
-
"posttest": "eslint test"
|
|
29
|
+
"posttest": "eslint test",
|
|
30
|
+
"test-only": "mocha"
|
|
30
31
|
},
|
|
31
32
|
"license": "GPL-2.0",
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"chai": "^3.4.1",
|
|
34
|
-
"eslint": "^
|
|
35
|
-
"eyeglass": "^
|
|
36
|
-
"mocha": "^
|
|
35
|
+
"eslint": "^3.6.1",
|
|
36
|
+
"eyeglass": "^1.1.2",
|
|
37
|
+
"mocha": "^3.1.2",
|
|
37
38
|
"sassy-test": "^3.0.3"
|
|
38
39
|
}
|
|
39
40
|
}
|
data/sass/_support-for.scss
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
// Support the last 4 versions of all browsers except IE.
|
|
2
2
|
$support-for: (
|
|
3
3
|
chrome: -4,
|
|
4
|
-
edge:
|
|
5
|
-
firefox:
|
|
4
|
+
edge: 25, // Current Windows Server & Xbox One version.
|
|
5
|
+
firefox: 45, // Version 45 has "extended support" until June 13, 2017.
|
|
6
6
|
ie: 9,
|
|
7
7
|
opera: -4,
|
|
8
8
|
safari: -4,
|
|
9
9
|
'*': -4,
|
|
10
10
|
) !default;
|
|
11
11
|
|
|
12
|
-
// Set the current version number for all browsers. As of: 2016-
|
|
12
|
+
// Set the current version number for all browsers. As of: 2016-10-17
|
|
13
13
|
$support-for-current-browser-version: (
|
|
14
|
-
chrome:
|
|
15
|
-
edge:
|
|
16
|
-
firefox:
|
|
14
|
+
chrome: 54, // https://en.wikipedia.org/wiki/Google_Chrome_release_history
|
|
15
|
+
edge: 38, // https://en.wikipedia.org/wiki/Microsoft_Edge
|
|
16
|
+
firefox: 49, // https://en.wikipedia.org/wiki/Firefox_version_history#Firefox_45.4_ESR
|
|
17
17
|
ie: 11, // https://en.wikipedia.org/wiki/Internet_Explorer_versions
|
|
18
|
-
opera:
|
|
19
|
-
safari:
|
|
18
|
+
opera: 40, // https://en.wikipedia.org/wiki/Opera_(web_browser)
|
|
19
|
+
safari: 10, // https://en.wikipedia.org/wiki/Safari_version_history
|
|
20
20
|
) !default;
|
|
21
21
|
|
|
22
22
|
|
data/support-for.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.homepage = 'https://github.com/JohnAlbin/support-for'
|
|
10
10
|
spec.rubyforge_project =
|
|
11
11
|
|
|
12
|
-
spec.version = '1.0.
|
|
13
|
-
spec.date = '2016-
|
|
12
|
+
spec.version = '1.0.7'
|
|
13
|
+
spec.date = '2016-10-17'
|
|
14
14
|
spec.licenses = ['GPL-2.0']
|
|
15
15
|
|
|
16
16
|
spec.authors = ['John Albin Wilkins']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: support-for
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Albin Wilkins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-10-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sass
|
|
@@ -56,8 +56,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
56
56
|
- !ruby/object:Gem::Version
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
|
-
rubyforge_project: 1.0.
|
|
60
|
-
rubygems_version: 2.6.
|
|
59
|
+
rubyforge_project: 1.0.7
|
|
60
|
+
rubygems_version: 2.6.4
|
|
61
61
|
signing_key:
|
|
62
62
|
specification_version: 4
|
|
63
63
|
summary: Add conditional browser support to your Sass module
|