NpmCommand

data class NpmCommand(@Json(name = "command") val command: String, @Json(name = "arguments") val arguments: List<String>? = null)

The command run on an npm build.

Parameters

command

The command that was run (e.g. in \"npm install\", this would be \"install\").

arguments

The arguments passed to the command (e.g. in \"npm run script.js\", this would be \"script.js\").

Constructors

Link copied to clipboard
constructor(@Json(name = "command") command: String, @Json(name = "arguments") arguments: List<String>? = null)

Properties

Link copied to clipboard
val arguments: List<String>? = null
Link copied to clipboard