Any recommendations on how to migrate an existing Node project from using Semantic-UI to Fomantic-UI? I know Fomantic-UI is a fork of Semantic-UI and backward compatible, so I'm wondering if I can simply run:
Would I need do make any updates to the existing /semantic directory?
Thanks!
npm uninstall package_name
this is the npm code to uninstall or remove a package
to install it is:
npm install package_name
in your case it will be
npm uninstall semantic-ui
npm install fomantic-ui