I want to write single npm task which can accept multiple command line arguments
// build.gradle
task npmRunTestSuite(type: NpmTask) {
// args = ['run', 'regression-test']
}
now from command prompt
.\gradlew npmRunTestSuite --args="run","'regression-test"
or
.\gradlew npmRunTestSuite --args="run","'smoke-test"
I know i can write two different task to achieve it but want to avoid it. Its urgent please do help me out.