|
|
|
@ -24,7 +24,9 @@ import { |
|
|
|
ɵCssSelectorList, |
|
|
|
ɵNG_COMP_DEF, |
|
|
|
ɵNG_MOD_DEF, |
|
|
|
ɵNG_PIPE_DEF, |
|
|
|
ɵNgModuleDef, |
|
|
|
ɵPipeDef, |
|
|
|
DOCUMENT |
|
|
|
} from '@angular/core'; |
|
|
|
|
|
|
|
@ -302,6 +304,12 @@ export class ResourcesService { |
|
|
|
(component as any).standalone = false; |
|
|
|
} |
|
|
|
} |
|
|
|
if (ɵNG_PIPE_DEF in decl) { |
|
|
|
const pipe: ɵPipeDef<any> = decl[ɵNG_PIPE_DEF]; |
|
|
|
if (isUndefined(pipe.standalone) || pipe.standalone) { |
|
|
|
(pipe as any).standalone = false; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
modulesWithComponents.modules.push(moduleInfo); |
|
|
|
|