You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
libs/features/ui/pipes/index.js this exports a PIPES array.
export const PIPES = [
DateOrderPipe,
SizePipe
];
libs/features/ui/ui.module.ts imports and uses UI_PIPES array which is not found (not exported) import { UI_PIPES } from './pipes'; exports: [...MODULES, ...PIPES, ...UI_PIPES]
The same thing applied with directives
The text was updated successfully, but these errors were encountered:
Thanks for heads up - this is fixed in 7.4.4 now 👍 (if generated in workspace already can just update or remove the ...PIPES one)...should be UI_PIPES in this case. 7.4.4 will make sure of that for new workspaces.
I still have an issue while generating pipe or directive, this may be related to #68 but not resolved in my case.
example: generate pipe to the default feature (UI)
ng generate @nstudio/schematics:pipe size
libs/features/ui/pipes/index.js this exports a PIPES array.
libs/features/ui/ui.module.ts imports and uses UI_PIPES array which is not found (not exported)
import { UI_PIPES } from './pipes';
exports: [...MODULES, ...PIPES, ...UI_PIPES]
The text was updated successfully, but these errors were encountered: