We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70a2b0 commit 803f636Copy full SHA for 803f636
packages/angular_devkit/build_angular/src/index.ts
@@ -49,6 +49,11 @@ export {
49
KarmaConfigOptions,
50
} from './karma';
51
52
+export {
53
+ execute as executeProtractorBuilder,
54
+ ProtractorBuilderOptions,
55
+} from './protractor';
56
+
57
export {
58
execute as executeServerBuilder,
59
ServerBuilderOptions,
packages/angular_devkit/build_angular/src/protractor/index.ts
@@ -76,7 +76,9 @@ async function updateWebdriver() {
76
} as unknown as JSON);
77
}
78
79
-async function execute(
+export { ProtractorBuilderOptions };
80
81
+export async function execute(
82
options: ProtractorBuilderOptions,
83
context: BuilderContext,
84
): Promise<BuilderOutput> {
0 commit comments