@nx/eslint 21.2.0-beta.1 → 21.2.0-beta.2

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/README.md CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # Nx: Smart Repos · Fast Builds
24
24
 
25
- Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
25
+ An AI-first build platform that connects everything from your editor to CI. Helping you deliver fast, without breaking things.
26
26
 
27
27
  ## Getting Started
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/eslint",
3
- "version": "21.2.0-beta.1",
3
+ "version": "21.2.0-beta.2",
4
4
  "private": false,
5
5
  "description": "The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
6
6
  "repository": {
@@ -35,8 +35,8 @@
35
35
  "eslint": "^8.0.0 || ^9.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@nx/devkit": "21.2.0-beta.1",
39
- "@nx/js": "21.2.0-beta.1",
38
+ "@nx/devkit": "21.2.0-beta.2",
39
+ "@nx/js": "21.2.0-beta.2",
40
40
  "semver": "^7.5.3",
41
41
  "tslib": "^2.3.0",
42
42
  "typescript": "~5.8.2"
@@ -91,7 +91,7 @@ function convertEslintJsonToFlatConfig(tree, root, config, ignorePaths, format)
91
91
  if (tree.exists(ignorePath)) {
92
92
  const patterns = tree
93
93
  .read(ignorePath, 'utf-8')
94
- .split('\n')
94
+ .split(/\r\n|\r|\n/)
95
95
  .filter((line) => line.length > 0 && line !== 'node_modules')
96
96
  .map((path) => (0, path_utils_1.mapFilePath)(path));
97
97
  if (patterns.length > 0) {