stylus-source 0.35.0 → 0.35.1
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/VERSION +1 -1
- data/vendor/lib/functions/image.js +2 -1
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json +5 -1
- data/vendor/node_modules/mocha/package.json +1 -5
- data/vendor/node_modules/sax/package.json +1 -5
- data/vendor/node_modules/should/package.json +1 -5
- data/vendor/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e37d71d320fa2f35f1500cadc5d638e0be5c4da
|
4
|
+
data.tar.gz: f9d7a2730fd5b97bfaa07392461a972cfe28e608
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 926ea4254b1308b835cc20d77b033b0c046720f6143e9f8c0910d7d866b07ab801e710d3a771c1d6910788d6b7fa858c9df37e7246d73c78573a224c69583f7f
|
7
|
+
data.tar.gz: f9ea326bcd1a14a5f4ce54300e978372104426b63acfa04939c35f1eeb1b0565f0277ac22be72111db8311487f156bd97e22741b2f188c267e02fa5576be5e0d
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.35.
|
1
|
+
0.35.1
|
@@ -115,7 +115,8 @@ Image.prototype.size = function(){
|
|
115
115
|
while (offset < this.length) {
|
116
116
|
offset += blockSize;
|
117
117
|
if (offset >= this.length || 0xff != buf[offset]) break;
|
118
|
-
|
118
|
+
// SOF0 or SOF2 (progressive)
|
119
|
+
if (0xc0 == buf[offset + 1] || 0xc2 == buf[offset + 1]) {
|
119
120
|
height = buf[offset + 5] << 8 | buf[offset + 6];
|
120
121
|
width = buf[offset + 7] << 8 | buf[offset + 8];
|
121
122
|
} else {
|
@@ -37,5 +37,9 @@
|
|
37
37
|
"url": "https://github.com/isaacs/sigmund/issues"
|
38
38
|
},
|
39
39
|
"_id": "sigmund@1.0.0",
|
40
|
-
"
|
40
|
+
"dist": {
|
41
|
+
"shasum": "8b342a413c9a7c2c3b82a0f2ea4c56343bc4cb13"
|
42
|
+
},
|
43
|
+
"_from": "sigmund@~1.0.0",
|
44
|
+
"_resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz"
|
41
45
|
}
|
@@ -55,9 +55,5 @@
|
|
55
55
|
"url": "https://github.com/visionmedia/mocha/issues"
|
56
56
|
},
|
57
57
|
"_id": "mocha@1.13.0",
|
58
|
-
"
|
59
|
-
"shasum": "029732288999afe458136028f26b6a84bf3cfffb"
|
60
|
-
},
|
61
|
-
"_from": "mocha@*",
|
62
|
-
"_resolved": "https://registry.npmjs.org/mocha/-/mocha-1.13.0.tgz"
|
58
|
+
"_from": "mocha@*"
|
63
59
|
}
|
@@ -60,9 +60,5 @@
|
|
60
60
|
"url": "https://github.com/isaacs/sax-js/issues"
|
61
61
|
},
|
62
62
|
"_id": "sax@0.5.5",
|
63
|
-
"
|
64
|
-
"shasum": "8081a9f5048fea14208e3be7c10890e822ca100d"
|
65
|
-
},
|
66
|
-
"_from": "sax@0.5.x",
|
67
|
-
"_resolved": "https://registry.npmjs.org/sax/-/sax-0.5.5.tgz"
|
63
|
+
"_from": "sax@0.5.x"
|
68
64
|
}
|
@@ -38,9 +38,5 @@
|
|
38
38
|
"url": "https://github.com/visionmedia/should.js/issues"
|
39
39
|
},
|
40
40
|
"_id": "should@2.0.1",
|
41
|
-
"
|
42
|
-
"shasum": "d244c90bb919f3e51dca472ef7d93c244eb7b79a"
|
43
|
-
},
|
44
|
-
"_from": "should@*",
|
45
|
-
"_resolved": "https://registry.npmjs.org/should/-/should-2.0.1.tgz"
|
41
|
+
"_from": "should@*"
|
46
42
|
}
|
data/vendor/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{ "name": "stylus"
|
2
2
|
, "description": "Robust, expressive, and feature-rich CSS superset"
|
3
|
-
, "version": "0.35.
|
3
|
+
, "version": "0.35.1"
|
4
4
|
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
|
5
5
|
, "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]
|
6
6
|
, "repository": "git://github.com/LearnBoost/stylus"
|