entrypoints paths expanded
See original GitHub issueSearch terms
ExpandPackages Expand Packages EntryPoints entry points entryPointStrategy=packages
Question
I’m debugging to find out why typedoc cannot find my packages.
Finally, in options, I’ve found a path expansion:
From this image, you can see the packages/*
turns into C:\\Test\\xxxxx
.
This expansion finally leads to expandPackages
method works not properly.:
Our question is, is this expansion intended?
Let me know if my usage is wrong.
Thanks for your help! Raynor
typedoc.json:
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"packages/*"
],
"out": "doc",
"entryPointStrategy": "Packages",
"excludePrivate": true,
"excludeNotDocumented": true
}
Issue Analytics
- State:
- Created a year ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Entry Points - webpack
We can also pass an array of file paths to the entry property which creates what is known as a "multi-main entry". This...
Read more >Options - TypeDoc
Exclude files by the given pattern when a path is provided as source. This option is only used to remove files from consideration...
Read more >Advanced usage — HdfsCLI 2.5.8 documentation
All Client methods provide a path expansion functionality via the resolve() method. It enables the use of special markers to identify paths.
Read more >Expanded class hierarchy of EntryPoint | EntryPoint.php | Drupal 8.7 ...
Expanded class hierarchy of EntryPoint. class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, ...
Read more >EntryPoints - Træfik | Traefik | v1.5
clientCA] files = ["path/to/ca1.crt", "path/to/ca2.crt"] optional = false ... Care should be taken when defining replacement expand variables: $1x is ...
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
Both
Packages
andpackages
will be recognized and have the same behavior,packages
is technically the enum value and matches what you’ll see in --showConfig and what’s documented on the website, so the schema was updated to be consistent, #1983OK, got it.