There doesn't seem to be any way to run a command that has args but doesn't use flags.
wp option update blogdescription "New Description"
is a valid wp-cli command. Not sure there's anyway to get that to run in node-qp-cli.
wp.option.update("blogdescription", "New Description", cb)
That command throws an error in utils.js on line 33, where it attempts to get the object keys from the second argument. If it is an object, you get something like
There doesn't seem to be any way to run a command that has args but doesn't use flags.
is a valid wp-cli command. Not sure there's anyway to get that to run in node-qp-cli.
That command throws an error in utils.js on line 33, where it attempts to get the object keys from the second argument. If it is an object, you get something like
which is invalid.