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 6, 2024
1 parent af0250a commit de87fea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/minpath.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ function dirname(path) {
? '/'
: '.'
: end === 1 && path.codePointAt(0) === 47 /* `/` */
? '//'
: path.slice(0, end)
? '//'
: path.slice(0, end)
}

/**
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@
},
"devDependencies": {
"@types/node": "^20.0.0",
"c8": "^8.0.0",
"c8": "^9.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.56.0"
"xo": "^0.57.0"
},
"scripts": {
"prepack": "npm run build && npm run format",
Expand Down Expand Up @@ -102,9 +102,11 @@
"xo": {
"prettier": true,
"rules": {
"logical-assignment-operators": "off",
"n/file-extension-in-import": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-string-replace-all": "off"
"unicorn/prefer-string-replace-all": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}

0 comments on commit de87fea

Please sign in to comment.