/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/architect/builders/builders.json
25 строк
813 B
Hans Larsen
feat(@angular-devkit/architect): add generic architect builders
20 фев 2019, 00:51
20 фев 2019, 00:51
685d4d0
Код
Авторство
О чём код?
{ "$schema": "../src/builders-schema.json", "builders": { "true": { "implementation": "./true", "schema": "./noop-schema.json", "description": "Always succeed." }, "false": { "implementation": "./false", "schema": "./noop-schema.json", "description": "Always fails." }, "allOf": { "implementation": "./all-of", "schema": "./operator-schema.json", "description": "A builder that executes many builders in parallel, and succeed if both succeeds." }, "concat": { "implementation": "./concat", "schema": "./operator-schema.json", "description": "A builder that executes many builders one after the other, and stops when one fail. It will succeed if all builders succeeds (and return the last output)" } } }