normalize-scss 5.0.3 → 5.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/normalize-scss.gemspec +2 -2
- data/package.json +7 -6
- data/sass/_support-for.scss +8 -8
- 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: 505830cfe6634d5234f1b5e20cd364c1b9e5666f
|
4
|
+
data.tar.gz: 65adc9361504ad3aeb8fe31537d744c850aee1a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b39f1863a10dcb3fc690d8166926f257f009b171e54ced591e3e9cfb53fcadfc7320a43a68a08ed3bb4e538bbfc79751c8e41827c5fb825109d1ba7edff5cfe
|
7
|
+
data.tar.gz: 58c7f892fa5f433c546d571b26f39d1cc56de4708f940f380f0561112defa9c2b8a9052bda8c1ae67c5d4ada2864951c73c55233ec38cfe2fdc761a0d8622892
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
For use with… | normalize-scss version
|
6
6
|
-----------------------------|-----------------------
|
7
|
-
Sass 3.4 or libSass | [5.0.
|
7
|
+
Sass 3.4 or libSass | [5.0.4](https://github.com/JohnAlbin/normalize-scss/releases/tag/5.0.4)<br> combining normalize.css v4.1.1 with v1.1.3
|
8
8
|
Ruby Sass 3.3 + Compass 1.0 | [3.0.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.3)<br> combining normalize.css v3.0.3 with v1.1.3
|
9
9
|
Ruby Sass 3.2 + Compass 0.12 | [2.2.0+normalize.2.1.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/2.2.0%2Bnormalize.2.1.3)<br> combining normalize.css v2.1.3 with v1.1.3
|
10
10
|
|
data/normalize-scss.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.homepage = 'https://github.com/JohnAlbin/normalize-scss'
|
10
10
|
spec.rubyforge_project =
|
11
11
|
|
12
|
-
spec.version = '5.0.
|
13
|
-
spec.date = '2016-
|
12
|
+
spec.version = '5.0.4'
|
13
|
+
spec.date = '2016-10-17'
|
14
14
|
spec.licenses = ['MIT', 'GPL-2.0']
|
15
15
|
|
16
16
|
spec.authors = ['John Albin Wilkins']
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "normalize-scss",
|
3
|
-
"version": "5.0.
|
3
|
+
"version": "5.0.4",
|
4
4
|
"description": "This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website.",
|
5
5
|
"homepage": "https://github.com/JohnAlbin/normalize-scss",
|
6
6
|
"bugs": {
|
@@ -30,17 +30,18 @@
|
|
30
30
|
},
|
31
31
|
"scripts": {
|
32
32
|
"test": "mocha",
|
33
|
-
"posttest": "eslint test"
|
33
|
+
"posttest": "eslint test",
|
34
|
+
"test-only": "mocha"
|
34
35
|
},
|
35
36
|
"license": "(MIT OR GPL-2.0)",
|
36
37
|
"devDependencies": {
|
37
38
|
"chai": "^3.5.0",
|
38
39
|
"chroma-sass": "^1.2.3",
|
39
|
-
"eslint": "^
|
40
|
-
"eyeglass": "^
|
41
|
-
"mocha": "^
|
40
|
+
"eslint": "^3.8.0",
|
41
|
+
"eyeglass": "^1.1.2",
|
42
|
+
"mocha": "^3.1.2",
|
42
43
|
"sassy-test": "^3.0.0",
|
43
|
-
"support-for": "^1.0.
|
44
|
+
"support-for": "^1.0.7",
|
44
45
|
"typey": "^1.0.0"
|
45
46
|
}
|
46
47
|
}
|
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
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: normalize-scss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.4
|
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
|
@@ -67,8 +67,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
requirements: []
|
70
|
-
rubyforge_project: 5.0.
|
71
|
-
rubygems_version: 2.
|
70
|
+
rubyforge_project: 5.0.4
|
71
|
+
rubygems_version: 2.6.4
|
72
72
|
signing_key:
|
73
73
|
specification_version: 4
|
74
74
|
summary: The Sass version of Normalize.css
|