Skip to content

Commit 4fd9fd6

Browse files
goto-bus-stopyoshuawuyts
authored andcommitted
Dep updates (#6)
* Update standard * Update dependency-check * Update stream deps * ci: update matrix * Update hstream. * upgrade standard * ci: update matrix
1 parent 6fb19a8 commit 4fd9fd6

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.travis.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
node_js:
2-
- "4"
3-
- "5"
4-
- "6"
5-
- "7"
6-
sudo: false
71
language: node_js
2+
node_js:
3+
- "stable"
4+
- "12"
5+
- "10"
6+
- "8"
87
script: "npm run test"
9-
# after_success: "npm i -g codecov && npm run coverage && codecov"

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = inline
1414
function inline (css) {
1515
if (Buffer.isBuffer(css)) css = String(css)
1616

17-
assert.equal(typeof css, 'string', 'inline-critical-css: expected css to be type string')
17+
assert.strictEqual(typeof css, 'string', 'inline-critical-css: expected css to be type string')
1818

1919
var decoder = new StringDecoder('utf8')
2020
var src = ''

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"extract-html-class": "^1.0.1",
1515
"extract-html-id": "^1.0.0",
1616
"extract-html-tag": "^1.0.1",
17-
"hstream": "^1.0.0",
18-
"through2": "^2.0.3"
17+
"hstream": "^2.0.0",
18+
"through2": "^3.0.1"
1919
},
2020
"devDependencies": {
21-
"concat-stream": "^1.6.0",
22-
"dependency-check": "^2.8.0",
23-
"pump": "^1.0.2",
24-
"standard": "^10.0.2",
21+
"concat-stream": "^2.0.0",
22+
"dependency-check": "^3.4.1",
23+
"pump": "^3.0.0",
24+
"standard": "^14.0.0",
2525
"tape": "^4.6.3"
2626
},
2727
"keywords": [

0 commit comments

Comments
 (0)