mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:37:18 +08:00
This is useful for testing things with a builder that always succeeds. In a project, use "devkit-admin build && npm install $DEVKIT_PATH/dist/___builder.tgz" and you have a "@_/builders" package that contains a true builder. This is not published on NPM so I scope this as ci.
11 lines
208 B
JSON
11 lines
208 B
JSON
{
|
|
"$schema": "../architect/src/builders-schema.json",
|
|
"builders": {
|
|
"true": {
|
|
"class": "./src/true",
|
|
"schema": "./src/noop-schema.json",
|
|
"description": "Always succeed."
|
|
}
|
|
}
|
|
}
|