Skip to content

Commit e1628d5

Browse files
committed
[release] Also split the onlyPackages param
I missed this the last time.
1 parent ef4bc8b commit e1628d5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

scripts/release/prepare-release-from-npm-commands/parse-params.js

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ module.exports = () => {
5656
const params = commandLineArgs(paramDefinitions);
5757

5858
splitCommaParams(params.skipPackages);
59+
splitCommaParams(params.onlyPackages);
5960

6061
return params;
6162
};

scripts/release/publish-commands/parse-params.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ const paramDefinitions = [
4949
module.exports = () => {
5050
const params = commandLineArgs(paramDefinitions);
5151
splitCommaParams(params.skipPackages);
52+
splitCommaParams(params.onlyPackages);
5253
splitCommaParams(params.tags);
5354
params.tags.forEach(tag => {
5455
switch (tag) {

0 commit comments

Comments
 (0)