Is there an existing issue for this?
This issue exists in the latest npm version
Current Behavior
package.json
{
"workspaces": [
"packages/*",
"examples/*"
]
}
npm version -w packages/a -w packages/b -w packages/c ...
npm publish -w packages/a -w packages/b -w packages/c ...
Expected Behavior
package.json
npm version -w packages/*
npm publish -w packages/*
even filter some workspaces:
npm version --filter-workspace examples/*
npm publish --filter-workspace examples/*
Is there an existing issue for this?
This issue exists in the latest npm version
Current Behavior
package.json{ "workspaces": [ "packages/*", "examples/*" ] }Expected Behavior
package.jsoneven filter some workspaces: