@travetto/manifest 5.0.8 → 5.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 ArcSine Technologies
3
+ Copyright (c) 2020 ArcSine Technologies
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/manifest",
3
- "version": "5.0.8",
3
+ "version": "5.0.10",
4
4
  "description": "Support for project indexing, manifesting, along with file watching",
5
5
  "keywords": [
6
6
  "path",
@@ -25,6 +25,9 @@
25
25
  "engines": {
26
26
  "node": ">=22.0.0"
27
27
  },
28
+ "dependencies": {
29
+ "@types/node": "^22.10.2"
30
+ },
28
31
  "repository": {
29
32
  "url": "https://github.com/travetto/travetto.git",
30
33
  "directory": "module/manifest"
@@ -208,8 +208,8 @@ export class ManifestIndex {
208
208
  const allMods = Object.keys(this.#manifest.modules);
209
209
  const active = new Set<string>(mode === 'workspace' ? this.getWorkspaceModules().map(x => x.name) : allMods);
210
210
 
211
- for (const expr of exprList.split(/\s*,\s*/g)) {
212
- const [, neg, mod] = expr.match(/(-|[+])?([^+\- ]+)$/) ?? [];
211
+ for (const expr of exprList.split(/,/g)) {
212
+ const [, neg, mod] = expr.trim().match(/(-|[+])?([^+\- ]{1,150})$/) ?? [];
213
213
  if (mod) {
214
214
  const pattern = new RegExp(`^${mod.replace(/[*]/g, '.*')}$`);
215
215
  for (const m of allMods.filter(x => pattern.test(x))) {
@@ -47,6 +47,7 @@ export type Package = {
47
47
  includes?: Record<string, 'main' | true>;
48
48
  watchIgnores?: string[];
49
49
  typesFolder?: string;
50
+ binaryDependencies?: string[];
50
51
  };
51
52
  };
52
53
  workspaces?: string[];