Skip to content

Commit 0b558b1

Browse files
committed
chore(deps): update dev dependencies
1 parent a6f41fd commit 0b558b1

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

lib/react-utils.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
/* eslint-disable regexp/no-useless-range */
2+
13
// *** REACT BORROWED ***
24

35
const ATTRIBUTE_NAME_START_CHAR =
46
':A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD';
57
const ATTRIBUTE_NAME_CHAR =
8+
// eslint-disable-next-line regexp/prefer-w
69
ATTRIBUTE_NAME_START_CHAR + '\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040';
710

811
// eslint-disable-next-line no-misleading-character-class
912
const VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + ATTRIBUTE_NAME_START_CHAR + '][' + ATTRIBUTE_NAME_CHAR + ']*$');
1013

11-
const VALID_TAG_REGEX = /^[A-Za-z][\w.:-]*$/; // Simplified subset
14+
const VALID_TAG_REGEX = /^[a-z][\w.:-]*$/i; // Simplified subset
1215

1316
/** @type {Map<string, boolean>} */
1417
const validatedTagCache = new Map();

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,27 +93,27 @@
9393
"@skypack/package-check": "^0.2.2",
9494
"@types/chai": "^4.3.20",
9595
"@types/chai-as-promised": "^7.1.8",
96-
"@types/mocha": "^10.0.8",
97-
"@types/node": "^18.19.54",
96+
"@types/mocha": "^10.0.9",
97+
"@types/node": "^18.19.59",
9898
"@types/sinon": "^17.0.3",
9999
"@types/sinon-chai": "^3.2.12",
100-
"@voxpelli/eslint-config": "^21.0.0",
100+
"@voxpelli/eslint-config": "^22.0.0",
101101
"@voxpelli/tsconfig": "^15.0.0",
102102
"c8": "^10.1.2",
103103
"chai": "^4.5.0",
104104
"chai-as-promised": "^7.1.2",
105-
"eslint": "^9.11.1",
105+
"eslint": "^9.13.0",
106106
"husky": "^9.1.6",
107107
"installed-check": "^9.3.0",
108-
"knip": "^5.30.6",
108+
"knip": "^5.34.0",
109109
"linemod": "^2.0.1",
110110
"mocha": "^10.7.3",
111111
"nodemon": "^3.1.7",
112-
"npm-run-all2": "^6.2.3",
112+
"npm-run-all2": "^6.2.6",
113113
"sinon": "^19.0.2",
114114
"sinon-chai": "^3.7.0",
115115
"tsd": "^0.31.2",
116-
"type-coverage": "^2.29.1",
116+
"type-coverage": "^2.29.7",
117117
"typescript": "~5.6.2",
118118
"validate-conventional-commit": "^1.0.4"
119119
}

0 commit comments

Comments
 (0)