A collection of helper components, built for AngularCLI (Angular 4)
npm install @tifbs/components-bundlenpm update' is run - they will remain the version checked out at the time, as they are considered dependencies.
update' command:
npm --depth 3 update
This will update the npm packages you have installed, along with their dependencies, and the dependencies of those.
ng lint
Because these are Angular Component; 'ng lint' will try to evaluate them, and will pick up that the prefix to the selectors does not match your own project's.
To remove these from the linting; open your '.angular-cli.json' file, and find the 'lint' section.
_Add:_
"exclude": "/node_modules//*"
_To the first entry in the list:_
"lint":
{
"project": "src/tsconfig.app.json",
"exclude": "/node_modules//*"
},
...`