Get name of all libraries or apps
See original GitHub issueDescription
Now we have the opportunity:
$ nx affected:libs --plain
core taiga-schematics addon-tablebars addon-commerce addon-charts addon-mobile addon-doc addon-editor addon-table kit cdk i18n icons testing
And we can do this:
$ nx affected --exclude=$(nx affected:apps --plain) # run only libraries
But I don’t see --exclude for run-many command.
Please, add API for get list apps or libs
$ nx info:apps
demo
$ nx info:libs
core taiga-schematics addon-tablebars addon-commerce addon-charts addon-mobile addon-doc addon-editor addon-table kit cdk i18n icons testing
Motivation
we had to write code that will exclude applications


Issue Analytics
- State:
- Created 2 years ago
- Comments:11 (1 by maintainers)
Top Results From Across the Web
Find your apps in App Library on iPhone - Apple Support
In App Library on iPhone, easily find your apps organized into categories—Social, Travel, Entertainment, and so on—and open them.
Read more >Get jar library names used by app - java - Stack Overflow
How can I get all jars name used by my application? Based on the bellow image, I would like an array that contains...
Read more >How to List Installed Python Packages - ActiveState
Before getting a list of installed packages, it's always a good ... all Python packages including linked C libraries from source code, ...
Read more >Get a list of document libraries from a SharePoint site
Hello all, I have a radio control and I want the items to be the names of the document libraries in my SharePoint...
Read more >Libby App: Free ebooks & audiobooks from your library
To get started, simply download the Libby app, find your library, and sign in. Your loans, holds and wish list items will be...
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

But I want use build command instead package))
work in branch/any
didn’t work in branch/master
We want
And then we can in master:
I found
npx nx affected:libs --all --plainwill display all libsnpx nx affected:apps --all --plainwill display all appsnpx nx run-many --target=build --projects=$(npx nx affected:libs --all --plain | sed -r 's/[ ]+/,/g')will build all libs only