File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
packages/angular_devkit/architect/builders Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- import { of } from 'rxjs' ;
9
8
import { createBuilder } from '../src/index2' ;
10
9
11
- export default createBuilder ( ( ) => of ( {
10
+ export default createBuilder ( ( ) => ( {
12
11
success : false ,
13
12
error : 'False builder always errors.' ,
14
13
} ) ) ;
Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- import { of } from 'rxjs' ;
9
8
import { createBuilder } from '../src/index2' ;
10
9
11
- export default createBuilder ( ( ) => of ( { success : true } ) ) ;
10
+ export default createBuilder ( ( ) => ( { success : true } ) ) ;
You can’t perform that action at this time.
0 commit comments