Nx
Enterprise
Nx
Overview
Sign in / Sign up
Open main menu
Nx
GitHub
Select a tab
Overview
Runs
Analytics
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Filter
Filter exact branch match
Exact
Select status
Succeeded
master
3d710ce9 fix(react): only add release config for publishable librarires (#30474)
11 days ago
by beaussan
Succeeded
30474
0082b0bd fix(react): only add release config for publishable librarires
11 days ago
by beaussan
Succeeded
master
dfbfe3b7 fix(linter): add `cjs`, `cts`, `mjs`, and `mts` to the default extensions for the inference plugin (#29534) ## Current Behavior On the default generated eslint on a ts reference workspace, the config allows for linting of cjs and mjs files ```js const nx = require('@nx/eslint-plugin'); module.exports = [ ...nx.configs['flat/base'], ...nx.configs['flat/typescript'], ...nx.configs['flat/javascript'], { ignores: ['**/dist'], }, { files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'], rules: { '@nx/enforce-module-boundaries': [ 'error', { enforceBuildableLibDependency: true, allow: ['^.*/eslint(\\.base)?\\.config\\.[cm]?js$'], depConstraints: [ { sourceTag: '*', onlyDependOnLibsWithTags: ['*'], }, ], }, ], }, }, { files: [ '**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx', '**/*.cjs', '**/*.mjs', ], // Override or add rules here rules: {}, }, ]; ``` However, the default glob is not matching them ## Expected Behavior All cjs and mjs files are included in the lint target detection --------- Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com>
2 months ago
by beaussan
Succeeded
29534
dcf298b1 fix(linter): add cjs and mjs to the default extensions for the inference plugin
3 months ago
by beaussan