v15 includes folders not included in v14
See original GitHub issueCurrent Behavior
v15 includes folders as apps/libs not previously included in v14
Expected Behavior
Only folders explicitly defined in nx.json, tsconfig.json, or angular.json should be included in list of apps/libs
Steps to Reproduce
I have a firebase functions folder /functions in the root of my workspace. Previous to v14 this folder was completely ignored. Now in v15, it shows up in the list of projects (apps/libs) and because it doesn’t work the same way as nx projects, my CI build is failing.
Failure Logs
> nx run functions:test
> functions@ test /home/runner/work/active-branch-tracker/active-branch-tracker/functions
> jest --runInBand --detectOpenHandles
● Validation Error:
Module @swc/jest in the transform option was not found.
<rootDir> is: /home/runner/work/active-branch-tracker/active-branch-tracker/functions
Configuration Documentation:
https://jestjs.io/docs/configuration
Environment
I don’t think this is environment-specific and I’m experiencing this same thing happening across mac/windows/linux
Issue Analytics
- State:
- Created a year ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Core changes between v14 -> v15 - Odoo
Hi all, I would like to upgrade my custom modules to v15, but can't seem to find the core changes between the two...
Read more >Lenovo V14 and V15 User Guide - CNET Content Solutions
This guide may contain information about accessories, features, and software that are not available on all models. • This guide contains instructions that ......
Read more >Azure File Sync Agent v15 Release – March 2022
This article describes the improvements and issues that are fixed in the Azure File Sync Agent v15 release that is dated March 2022....
Read more >Cannot install v15 on Mac OS with M1 Chip #2518 - GitHub
Downloading https://nodejs.org/dist/v15.14.0/node-v15.14.0-darwin- ... No such file or directory Provided file to checksum does not exist.
Read more >Support Packages for the hardware catalog in the TIA Portal ...
The Support Packages will permit you to configure modules that are not contained in the hardware catalog of your TIA Portal installation.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Yes, this is true.
Nx now also looks for other projects indicated with a
package.json. You can ignore this project by adding that directory to.nxignore(in the root of your workspace)Thanks!