Nx
Enterprise
Nx
Sign in / Sign up
Open main menu
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Status
Fix filter
Filter
Fuzzy
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Failed
34160
9a96368f Merge branch 'master' into support-plugin-project-negations
3 hours ago
by llwt
l
Failed
34160
Environment issue
→
546fd2b1 feat(core): optimize pattern matching by checking negations once Refactor pattern matching to check for negation patterns once upfront instead of on every file iteration. Creates specialized matcher functions that eliminate null checks and branching in the hot loop. Changes: - Split into matchesSimplePatterns (fast) and matchesNegationPatterns (full) - createIncludeMatcher() returns function that always returns true if empty - createExcludeMatcher() returns function that always returns false if empty - Eliminates null checks and conditional logic in the file iteration loop - Matchers created outside the file loop in findMatchingConfigFiles Performance impact (1500 files, 4 patterns): - Before: 32.1ms (checking negation per file) - After: 26.0ms (checking negation once) - Improvement: 19% faster 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
7 days ago
by llwt
l
Canceled
34160
372a3ca3 feat(core): add fast-path optimization for plugin include/exclude patterns Add a fast path for pattern matching when no negation patterns are present. This maintains backward-compatible performance while supporting the new negation pattern feature. Performance impact (1500 files, 4 patterns): - Non-negation patterns: 18% faster than before (26.8ms vs 32.7ms) - With negation patterns: Acceptable overhead for new feature (23.6ms) The fast path uses short-circuit evaluation (.some()) which exits early on first match, while the slow path processes all patterns sequentially to handle negation logic correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
7 days ago
by llwt
l
Canceled
34160
499e4e70 docs(nx-dev): document negation pattern support for plugin include/exclude Add documentation for the newly added negation pattern feature in plugin include/exclude configuration. Includes examples and explanation of how the patterns are processed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
7 days ago
by llwt
l
Previous page
Previous
Next
Next page