-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(pkg): support empty bracket and negative indexes syntax #3536
feat(pkg): support empty bracket and negative indexes syntax #3536
Conversation
Adds ability to using empty bracket syntax as a shortcut to appending items to the end of an array when using `npm pkg set`, e.g: npm pkg set keywords[]=foo Relates to: npm/rfcs#402
@@ -10,6 +10,7 @@ const cleanLeadingDot = str => | |||
const parseKeys = (key) => { | |||
const sqBracketItems = new Set() | |||
const parseSqBrackets = (str) => { | |||
str = str.replace('[]', '[-0]') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if i have an object with a literal key of "-0"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm that's a good point, it's not only -0
but any negative index really (which are also being added support to here) - now I'm not so sure about it given that we didn't explore that idea much further during the RFC process
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems just like using a string placeholder won’t work, because any string could be an object key - ie, it’s an implementation question, not a semantics question.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For an array, negative indexes could indeed be supported - but you’d have to traverse down to know that’s what it was.
thank you so much for the awesome help as usual @ljharb ❤️ I'm going to close this PR in order to leave this as a ref on how we could potentially handle negative indexes in the future if that discussion ever comes back again. Otherwise I'm heading in a diff direction over #3539 which is using a special symbol to identify the empty brackets syntax instead of modifying the original string which I believe is a much more solid approach. |
Adds ability to using empty bracket syntax as a shortcut to appending
items to the end of an array when using
npm pkg set
, e.g:References
Relates to: npm/rfcs#402
cc @darcyclarke @ljharb