angular-cli/packages/_/builders/builders.json
Hans 8150838768 ci: new true builder as a private package (#12390)
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.
2018-09-27 14:23:54 -07:00

11 lines
208 B
JSON

{
"$schema": "../architect/src/builders-schema.json",
"builders": {
"true": {
"class": "./src/true",
"schema": "./src/noop-schema.json",
"description": "Always succeed."
}
}
}