Usage with scoped packages?
See original GitHub issueI have a package named: @scope/core
, and when generating the readme, the name of the package in the readme file becomes: scope
, not core
or @scope/core
. How can I get the correct package name in the readme?
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
scope - npm Docs
Scopes can be associated with a separate registry. This allows you to seamlessly use a mix of packages from the primary npm registry...
Read more >npm - Understanding Scoped Packages - Nitay Neeman's Blog
Scoped Packages is a way to group related npm packages together, and connect them to each other by a specified “scope”, that acts...
Read more >14 - How to work with scoped packages | npm Documentation
Scopes are used to group related packages together, and to create a namespace, like a domain, for npm modules. This is explained in...
Read more >Use npm scopes - Azure Artifacts - Microsoft Learn
A scope allows you to create a package with the same name as other packages created by different users without conflicts. Using scopes,...
Read more >How to use semantic versioning,work with scoped packages ...
If you want to create a scoped package, you have to simply use a package name that starts with your scope. { "name":...
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
@phun-ky and @olstenlarck I had this issue and I thought that I fixed it. I might not have merged a PR or published the change though. I’ll take a look and get it published. It had to do with how the
name
andalias
were normalized.My
package.json
:My
.verb.md
:My generated
README.md
: