This repository was archived by the owner on May 1, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,13 @@ function deepLinkingWorker(context: BuildContext) {
26
26
return Promise . resolve ( ) . then ( ( ) => {
27
27
const appNgModulePath = getStringPropertyValue ( Constants . ENV_APP_NG_MODULE_PATH ) ;
28
28
const appNgModuleFile = context . fileCache . get ( appNgModulePath ) ;
29
- console . log ( 'Getting deep link config entries' ) ;
30
29
const deepLinkConfigEntries = getDeepLinkData ( appNgModulePath , context . fileCache , context . runAot ) ;
31
- console . log ( 'Checking for existing deep link config' ) ;
32
30
const hasExisting = hasExistingDeepLinkConfig ( appNgModulePath , appNgModuleFile . content ) ;
33
31
if ( ! hasExisting ) {
34
32
// only update the app's main ngModule if there isn't an existing config
35
- console . log ( 'Converting deep link config to string' ) ;
36
33
const deepLinkString = convertDeepLinkConfigEntriesToString ( deepLinkConfigEntries ) ;
37
- console . log ( 'Updating App module and factory' ) ;
38
34
updateAppNgModuleAndFactoryWithDeepLinkConfig ( context , deepLinkString ) ;
39
35
}
40
- console . log ( 'DONE' ) ;
41
36
return deepLinkConfigEntries ;
42
37
} ) ;
43
38
}
You can’t perform that action at this time.
0 commit comments