File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
10
10
createBuilder ,
11
11
targetFromTargetString ,
12
12
} from '@angular-devkit/architect' ;
13
- import { WebpackLoggingCallback , runWebpack } from '@angular-devkit/build-webpack' ;
13
+ import { BuildResult , WebpackLoggingCallback , runWebpack } from '@angular-devkit/build-webpack' ;
14
14
import { JsonObject } from '@angular-devkit/core' ;
15
15
import * as path from 'path' ;
16
16
import * as webpack from 'webpack' ;
@@ -51,7 +51,10 @@ class InMemoryOutputPlugin {
51
51
}
52
52
}
53
53
54
- export async function execute ( options : ExtractI18nBuilderOptions , context : BuilderContext ) {
54
+ export async function execute (
55
+ options : ExtractI18nBuilderOptions ,
56
+ context : BuilderContext ,
57
+ ) : Promise < BuildResult > {
55
58
// Check Angular version.
56
59
assertCompatibleAngularVersion ( context . workspaceRoot , context . logger ) ;
57
60
You can’t perform that action at this time.
0 commit comments