We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From #536. A workspace member could accept a group key, for example.
group
The text was updated successfully, but these errors were encountered:
If you are able to preserve ordering, it might be easier to take an array of arrays for members, like:
"members": [ [ { "slug": "a", "path": "./a" }, { "slug": "b", "path": "./b" }, ], [ { "slug": "c", "path": "./c" }, { "slug": "d", "path": "./d" }, ] ]
or as named groups:
"groups": [ { "groupname": "one", "members": [ { "slug": "a", "path": "./a" }, { "slug": "b", "path": "./b" }, ] } ]
That way you don't also have to define group ordering somewhere else.
Sorry, something went wrong.
No branches or pull requests
From #536. A workspace member could accept a
group
key, for example.The text was updated successfully, but these errors were encountered: