Adding ascii as dependency to the blog isn't reflected in `nx graph`
See original GitHub issueDocumentation issue
- Reporting a documentation bug
- Documentation improvement
Is there a specific documentation page you are reporting?
https://nx.dev/core-tutorial/03-share-assets
Additional context or description
After following the first 3 steps of the tutorial, when I run nx graph
, it fails to detect the dependence of blog
on ascii
, despite the documentation saying otherwise.
/packages/blog/package.json
{
"name": "blog",
"description": "eleventy blog",
"version": "1.0.0",
"dependency": {
"ascii": "*"
},
"scripts": {
"build": "eleventy --input=./src --output=../../dist/packages/blog",
"serve": "eleventy --serve --input=./src --output=../../dist/packages/blog"
}
}
/packages/ascii/project.json
{
"root": "packages/ascii",
"sourceRoot": "packages/ascii/assets",
"projectType": "library"
}
Running nx graph
yields
Issue Analytics
- State:
- Created a year ago
- Reactions:8
- Comments:6
Top Results From Across the Web
Using the Nx Dependency Graph in Custom Scripts | juri.dev
In this article, we're going to look into how we can leverage it in our own scripts. Nx is an open source dev...
Read more >ASCII Visualisation of a graph of nodes in python
I want to be able to visualise the relationships between the Nodes dictated in their childLists and parentlists onto stdout (as an ASCII...
Read more >Plugging into the Dependency Graph Construction for Nx
This post shows you how a Go project in an Nx workspace can be added to the dependency graph by extending the Nx...
Read more >@lerna/symlink-dependencies | Yarn - Package Manager
Fast, reliable, and secure dependency management.
Read more >How to add markers in graph using python as shown below?
I want to design a graph like below, but, I don't know- how to add ... lw=1.2) t = ax.annotate('local max\n x =...
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 FreeTop 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
Top GitHub Comments
I was able to see the cow after fixing ascii.md
but dependency graph still looks like this:
same