-
Notifications
You must be signed in to change notification settings - Fork 239
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
RFC: npm workspaces - Config management #273
Open
ruyadorno
wants to merge
1
commit into
npm:main
Choose a base branch
from
ruyadorno:workspaces-part3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# npm workspaces: Config management | ||
|
||
## Summary | ||
|
||
Series of subcommands to allow managing what paths/folders should be handled as **workspaces**. | ||
|
||
## Motivation | ||
|
||
Minimize manual editing of the `package.json` file while providing more resilient and automated workflows for defining **workspaces** within your project. | ||
|
||
## Detailed Explanation | ||
|
||
- Add positional `workspaces` argument e.g: `lib/workspaces.js` that provides subcommands to enable workflows for **workspaces*** config management. | ||
|
||
## Rationale and Alternatives | ||
|
||
- The obvious alternative is to choose to not provide subcommands to handle **workspaces** config management. | ||
- Others? TBD | ||
|
||
## Implementation | ||
|
||
``` | ||
# Given a structure: | ||
. | ||
├── package.json { "name": "foo" } | ||
└── packages | ||
├── dep-a | ||
│ └── package.json { "name": "dep-a", "version": "1.0.0" } | ||
└── dep-b | ||
└── package.json { "name": "dep-b", "version": "1.3.1" } | ||
|
||
$ npm workspaces ls | ||
|
||
$ npm workspaces add ./packages/dep-a | ||
|
||
$ cat package.json | ||
{ | ||
"name": "foo", | ||
"workspaces": [ | ||
"./packages/dep-a" | ||
] | ||
} | ||
|
||
$ npm workspaces ls | ||
dep-a@1.0.0 -> ./packages/dep-a | ||
|
||
$ npm workspaces add ./dep-b | ||
|
||
$ cat package.json | ||
{ | ||
"name": "foo", | ||
"workspaces": [ | ||
"./packages/dep-a", | ||
"./packages/dep-b" | ||
] | ||
} | ||
|
||
$ npm workspaces ls | ||
dep-a@1.0.0 -> ./packages/dep-a | ||
dep-b@1.3.1 -> ./packages/dep-b | ||
|
||
# Remove by name/spec: | ||
$ npm workspaces rm dep-a | ||
|
||
# Remove by path: | ||
$ npm workspaces rm ./packages/dep-b | ||
|
||
$ cat package.json | ||
{ | ||
"name": "foo", | ||
"workspaces": [] | ||
} | ||
|
||
$ npm workspaces ls | ||
|
||
# Add glob: | ||
$ npm workspaces add ./packages/* | ||
|
||
$ cat package.json | ||
{ | ||
"name": "foo", | ||
"workspaces": [ | ||
"./packages/*" | ||
] | ||
} | ||
|
||
$ npm workspaces ls | ||
dep-a@1.0.0 -> ./packages/dep-a | ||
dep-b@1.3.1 -> ./packages/dep-b | ||
``` | ||
|
||
## Prior Art | ||
|
||
TBD | ||
|
||
## Unresolved Questions and Bikeshedding | ||
|
||
TBD |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Reading
npm workspaces add <package>
I would not expect it to mutate the root config. I would expect it to mirrornpm workspaces install <package>
in #117 sincenpm add/rm
are already aliases to install/uninstall dependencies.I think
npm workspaces <subcommand>
can either be a command that operates onpackage.json#workspaces
or every<workspaces>/package.json
mixing and matching is confusing.One thing we did in Bolt was have a
bolt project/p
command that allowed you to run commands on the root package containing all the workspaces.Alternatives:
npm workspaces-config add/rm
npm project workspaces add/rm
npm workspaces add-workspace/rm-workspace