Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ng2-smart-table has missing dependencies completer

I am using Ng2SmartTable and I have this error:

ERROR in The target entry-point "ng2-smart-table" has missing dependencies: - @ akveo / ng2-completer

I have already tried the following commands and it does not work:

1.npm install --save ng2-smart-table

2.npm i ng2-completer --save

3.npm i rxjs-compat --save

like image 533
NicoGuevaraAtuq Avatar asked Apr 04 '20 11:04

NicoGuevaraAtuq


2 Answers

    npm install ng2-smart-table
    npm install ng2-completer

If still don't work: delete node_module/ folder (install dependencies again)

    npm install
like image 83
rohit.khurmi095 Avatar answered Oct 13 '22 00:10

rohit.khurmi095


uninstall by using below command:-

npm uni @akveo/ng2-completer

install by using below command:-

npm i ng2-completer

It solve my problem !!

For further detail:- https://github.com/akveo/ng2-smart-table/commit/59c3a7885591f1e003dbd67fa80844d187a89244

like image 41
Kartik Chandra Avatar answered Oct 13 '22 00:10

Kartik Chandra