You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/angular_devkit/architect/builders/builders.json
+5-3
Original file line number
Diff line number
Diff line change
@@ -2,22 +2,24 @@
2
2
"$schema": "../src/builders-schema.json",
3
3
"builders": {
4
4
"true": {
5
-
"version": 2,
6
5
"implementation": "./true",
7
6
"schema": "./noop-schema.json",
8
7
"description": "Always succeed."
9
8
},
10
9
"false": {
11
-
"version": 2,
12
10
"implementation": "./false",
13
11
"schema": "./noop-schema.json",
14
12
"description": "Always fails."
15
13
},
16
14
"allOf": {
17
-
"version": 2,
18
15
"implementation": "./all-of",
19
16
"schema": "./operator-schema.json",
20
17
"description": "A builder that executes many builders in parallel, and succeed if both succeeds."
18
+
},
19
+
"concat": {
20
+
"implementation": "./concat",
21
+
"schema": "./operator-schema.json",
22
+
"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)"
0 commit comments