Skip to content
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

Conversation

ruyadorno
Copy link
Contributor

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

References

Relates to: npm/rfcs#402

cc @darcyclarke @ljharb

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
@ruyadorno ruyadorno requested a review from a team as a code owner July 12, 2021 22:27
@ruyadorno ruyadorno added Release 7.x work is associated with a specific npm 7 release release: next These items should be addressed in the next release semver:minor new backwards-compatible feature labels Jul 12, 2021
@ruyadorno ruyadorno mentioned this pull request Jul 12, 2021
docs/content/commands/npm-pkg.md Outdated Show resolved Hide resolved
@@ -10,6 +10,7 @@ const cleanLeadingDot = str =>
const parseKeys = (key) => {
const sqBracketItems = new Set()
const parseSqBrackets = (str) => {
str = str.replace('[]', '[-0]')
Copy link
Contributor

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"?

Copy link
Contributor Author

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

Copy link
Contributor

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.

Copy link
Contributor

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.

@ruyadorno
Copy link
Contributor Author

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.

@ruyadorno ruyadorno closed this Jul 13, 2021
@ruyadorno ruyadorno removed Release 7.x work is associated with a specific npm 7 release release: next These items should be addressed in the next release semver:minor new backwards-compatible feature labels Jul 13, 2021
@ruyadorno ruyadorno changed the title feat(pkg): Add support to empty bracket syntax feat(pkg): support empty bracket and negative indexes syntax Jul 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants