Package.json
 {
        custom: "",
        "build:xapp": "webpack ....",
        "test:xapp": "karma ....",
        "build:yapp": "webpack ....",
        "test:yapp": "karma ...."
         ... n number of apps
 }
If want to pass the entire command for the custom script as an argument, How can i do that?
something like this
yarn custom -- -"yarn build:xapp, yarn build:yapp, yarn test:xapp"
 
     
    