Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Mar 28, 2021
1 parent cb809a6 commit a5ec13a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"files": [
"index.json"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^17.0.0",
Expand All @@ -39,7 +38,7 @@
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"unified": "^9.0.0",
"xo": "^0.37.0"
"xo": "^0.38.0"
},
"scripts": {
"generate": "node build",
Expand Down
7 changes: 4 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ test('linkRel', function (t) {
t.ok(Array.isArray(linkRel), 'should be an `array`')

t.doesNotThrow(function () {
linkRel.forEach(function (tagName) {
assert.strictEqual(typeof tagName, 'string', tagName)
})
var index = -1
while (++index < linkRel.length) {
assert.strictEqual(typeof linkRel[index], 'string', linkRel[index])
}
}, 'should be a `string`s')

t.end()
Expand Down

0 comments on commit a5ec13a

Please sign in to comment.