there is a mismatch in generation of docs json
See original GitHub issueThanks for this beautiful package which helps all the ember addon to maintain classy docs ❤️
In my case, the name in the package.json
and in index.js
file are different.
- My
package.json
has a scoped name (@org/pkg
) as I have to publish this addon with the namespace. index.js
file is having justpkg
as I have to use justpkg
whenever I refer this addon.
However, the ec-addon-docs
generate the link using the name from package.json
while the output folder has the file path obtained from index.js
So, from my example,
- generated link will be like http://localhost:4200/docs/@org/pkg.json
- generate file output path will be like
dist/docs/pkg.json
Ideally, we should have used either of the names in both places! Thanks for any help.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
global.json SDK version mismatch error message is obscure
IMHO, it is a very obscure error message, especially from newcomers. I expect to see something about the SDK version requirement from global....
Read more >Mismatch between the REST API Swagger and Manual ...
I am having a hard time correlating which documentation is correct and which one should be followed. For example when creating an encounter ......
Read more >Mismatch between XML IsNumber and APEX JSON IsNumber
With a telefon extension containing a blank between the hyphen and the first digit, it produces invalid JSON --> see APEX_JSON.Write(Cursor): It uses...
Read more >Mismatch in original structure of the file-content to the same ...
This binary file i have to send it back as a response. I have read the file using ioutil.ReadFile. Since the output of...
Read more >Laravel Fortify and JSON based registering result in CRSF ...
I try to achieve something I thought was possible from reading the Fortify doc, using a third-party UI (e.g.: Mobile App) to register...
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
Since ember-cli does not support the mismatch, I am going to close this. Hope you are able to get your names the same!
Yeah, you are right. I can see the code for this in ECLI source. Even I expected after your first comment. Somehow, there was no warning in my console. 🤔
I can understand the necessity and will see if I can use same name in my case.