You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time I type npm run build, I have this error:
./node_modules/tom-select/src/vanilla.ts:100:39
Type error: Octal escape sequences and backreferences are not allowed in a character class. If this was intended as an escape sequence, use the syntax '\x09' instead.
98 | iterate( args, (_classes) =>{
99 | if( typeof _classes === 'string' ){
> 100 | _classes = _classes.trim().split(/[\11\12\14\15\40]/);
| ^
101 | }
102 | if( Array.isArray(_classes) ){
103 | classes = classes.concat(_classes);
(BTW, I noticed a pull request that should fix that)
Expected behavior
I expected that there would be no errors
Steps to reproduce
Install tom-select
type npm run build
Additional context
From the package.json file:
"typescript": "^5.5.4"
"tom-select": "^2.3.1"
The text was updated successfully, but these errors were encountered:
Bug description
Hello,
Every time I type
npm run build
, I have this error:(BTW, I noticed a pull request that should fix that)
Expected behavior
I expected that there would be no errors
Steps to reproduce
npm run build
Additional context
From the
package.json
file:The text was updated successfully, but these errors were encountered: