Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed May 14, 2019
1 parent 0bb6c02 commit 04618a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
'use strict'

/* eslint-disable no-constant-condition */

// See https://tools.ietf.org/html/rfc4647#section-3.1
// for more information on the algorithms.

Expand Down Expand Up @@ -84,7 +82,9 @@ function lookup(tag, range) {
tag = lower(tag)
range = lower(range)

/* eslint-disable no-constant-condition */
while (true) {
/* eslint-enable no-constant-condition */
if (range === asterisk || tag === range) {
return true
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
"devDependencies": {
"browserify": "^16.0.0",
"chalk": "^2.4.1",
"nyc": "^12.0.0",
"nyc": "^14.0.0",
"prettier": "^1.11.0",
"remark-cli": "^5.0.0",
"remark-cli": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"tape": "^4.0.0",
"tinyify": "^2.4.3",
"xo": "^0.21.0"
"xo": "^0.24.0"
},
"scripts": {
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
Expand Down

0 comments on commit 04618a0

Please sign in to comment.