New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/manifest

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/manifest - npm Package Compare versions

Comparing version 5.0.9 to 5.0.10

5

package.json
{
"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",

4

src/manifest-index.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc