wrong "authorOrganization" NodeProject field type
See original GitHub issueHI, I’m afraid the NodeProject authorOrganization
field type, now boolean
, should be string
instead.
(thank you for your amazing work!)
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How to fix ' ValidationError: users validation failed: name: Path ...
I'm creating a new user and checking whether the user email previously exists or not. If not then it is creating a new...
Read more >GraphQL schema basics - Apollo GraphQL Docs
This Query type defines two fields: books and authors . Each field returns a list of the corresponding type. With a REST-based API,...
Read more >Objects - GitHub Docs
Column name referenced by this project event. ... Set to false to prevent fork syncing. ... Author's association with the subject of the...
Read more >Why the Hell Would I Use Node.js? A Case-by-case Tutorial
Node.js can solve I/O scaling, but was not created to compute scaling problems. Learn why and when to use Node.js in this case-by-case...
Read more >package.json - npm Docs
If you plan to publish your package, the most important things in your package.json are the name and version fields as they will...
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
@fabio-vitali-docebo @tompahoward I was able to found the source! It’s an additional field used by jsii: https://aws.github.io/jsii/user-guides/lib-author/configuration/
Closing this out since I think the mystery is solved 😃
From what I can find, I can’t tell
author.organziation
should be a field in thepackage.json
, let alone if it should be astring
orboolean
. @fabio-vitali-docebo do you have a reference that says it should be astring
?author
is aMaintainer
https://github.com/npm/types/blob/master/index.d.ts#L17 And aMaintainer
has aname
,email
andurl
https://github.com/npm/types/blob/master/index.d.ts#L17 No mention of anorganization
field.The docs at https://docs.npmjs.com/cli/v8/configuring-npm/package-json#people-fields-author-contributors don’t mention an
organization
field either.From what I can see,
author.organization
was added in https://github.com/projen/projen/commit/e773a0dcab0ace15cabca4db8dbc95924248e7ad@eladb, sorry I’m no expert here, can you help us find where
author.organization
comes from? Is it an old field that’s no longer in the npm code/docs or is it an extension that other tools use? TIA