Gulp tasks
Last updated
Was this helpful?
Was this helpful?
export default function myCustomTask() {
// Task implementation
}{
"name": "build",
"description": "Builds and processes all application assets.",
"flags": [
{
"name": "env",
"description": "Sets the build environment.",
"type": "string"
},
{
"name": "watch",
"description": "Watches source files for changes and refreshes the bundles automatically.",
"type": "boolean"
}
],
"parameters": [
{
"name": "some-parameter",
"description": "A description of this parameter."
}
]
}