@travetto/manifest
Advanced tools
Comparing version 5.0.9 to 5.0.10
{ | ||
"name": "@travetto/manifest", | ||
"version": "5.0.9", | ||
"version": "5.0.10", | ||
"description": "Support for project indexing, manifesting, along with file watching", | ||
@@ -28,2 +28,5 @@ "keywords": [ | ||
}, | ||
"dependencies": { | ||
"@types/node": "^22.10.2" | ||
}, | ||
"repository": { | ||
@@ -30,0 +33,0 @@ "url": "https://github.com/travetto/travetto.git", |
@@ -211,4 +211,4 @@ import { existsSync } from 'node:fs'; | ||
for (const expr of exprList.split(/\s*,\s*/g)) { | ||
const [, neg, mod] = expr.match(/(-|[+])?([^+\- ]+)$/) ?? []; | ||
for (const expr of exprList.split(/,/g)) { | ||
const [, neg, mod] = expr.trim().match(/(-|[+])?([^+\- ]{1,150})$/) ?? []; | ||
if (mod) { | ||
@@ -215,0 +215,0 @@ const pattern = new RegExp(`^${mod.replace(/[*]/g, '.*')}$`); |
Sorry, the diff of this file is not supported yet
60578
1
+ Added@types/node@^22.10.2
+ Added@types/node@22.13.0(transitive)
+ Addedundici-types@6.20.0(transitive)